Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: 1stG/configs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @1stg/lib-config@13.0.0
Choose a base ref
...
head repository: 1stG/configs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @1stg/lib-config@13.0.1
Choose a head ref
  • 10 commits
  • 115 files changed
  • 2 contributors

Commits on Dec 29, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    17fe967 View commit details
  2. chore: release package(s) (#231)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    JounQin and github-actions[bot] authored Dec 29, 2023
    Copy the full SHA
    b123536 View commit details

Commits on Jan 11, 2024

  1. Copy the full SHA
    ab4d554 View commit details
  2. chore: release package(s) (#237)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    JounQin and github-actions[bot] authored Jan 11, 2024
    Copy the full SHA
    9478625 View commit details

Commits on Jan 16, 2024

  1. Copy the full SHA
    f6b9912 View commit details
  2. chore: release package(s) (#238)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    JounQin and github-actions[bot] authored Jan 16, 2024
    Copy the full SHA
    6553e1f View commit details

Commits on Mar 8, 2025

  1. chore: bump all (dev) deps (#284)

    JounQin authored Mar 8, 2025
    Copy the full SHA
    db3b78b View commit details
  2. ci: disable YARN_ENABLE_IMMUTABLE_INSTALLS for release

    JounQin committed Mar 8, 2025
    Copy the full SHA
    9616926 View commit details
  3. chore: ignore yarn files

    JounQin committed Mar 8, 2025
    Copy the full SHA
    a09dd91 View commit details
  4. chore: release package(s) (#286)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    JounQin and github-actions[bot] authored Mar 8, 2025
    Copy the full SHA
    3fbcd99 View commit details
Showing with 20,747 additions and 15,766 deletions.
  1. +0 −1 .codesandbox/ci.json
  2. +8 −8 .editorconfig
  3. +0 −7 .eslintignore
  4. +0 −15 .eslintrc
  5. +12 −5 .github/workflows/ci.yml
  6. +4 −0 .github/workflows/codeql.yml
  7. +4 −0 .github/workflows/pkg-size.yml
  8. +2 −1 .github/workflows/release.yml
  9. +4 −0 .gitignore
  10. +0 −1 .lintstagedrc.js
  11. +1 −0 .lintstagedrc.mjs
  12. +0 −1 .postcssrc.js
  13. +1 −0 .postcssrc.mjs
  14. +3 −0 .prettierignore
  15. +0 −1 .simple-git-hooks.js
  16. +1 −0 .simple-git-hooks.mjs
  17. +6 −1 .stylelintignore
  18. +1 −0 .yarn/plugins/plugin-prepare-lifecycle.cjs
  19. +935 −0 .yarn/releases/yarn-4.7.0.cjs
  20. +12 −0 .yarnrc.yml
  21. +22 −0 eslint.config.mjs
  22. +36 −29 package.json
  23. +20 −0 packages/app-config/CHANGELOG.md
  24. +7 −9 packages/app-config/package.json
  25. +6 −0 packages/babel-preset/CHANGELOG.md
  26. +6 −1 packages/babel-preset/index.js
  27. +15 −9 packages/babel-preset/package.json
  28. +6 −0 packages/browserslist-config/CHANGELOG.md
  29. +1 −3 packages/browserslist-config/modern.js
  30. +1 −1 packages/browserslist-config/package.json
  31. +6 −0 packages/commitlint-config/CHANGELOG.md
  32. +5 −5 packages/commitlint-config/index.js
  33. +6 −4 packages/commitlint-config/package.json
  34. +15 −0 packages/common-config/CHANGELOG.md
  35. +10 −16 packages/common-config/package.json
  36. +6 −0 packages/config/CHANGELOG.md
  37. +5 −0 packages/config/index.d.ts
  38. +19 −19 packages/config/index.js
  39. +8 −1 packages/config/package.json
  40. +7 −0 packages/eslint-config/CHANGELOG.md
  41. +25 −14 packages/eslint-config/_util.js
  42. +3 −0 packages/eslint-config/base.d.ts
  43. +160 −109 packages/eslint-config/base.js
  44. +1 −0 packages/eslint-config/index.d.ts
  45. +1 −6 packages/eslint-config/index.js
  46. +3 −0 packages/eslint-config/loose.d.ts
  47. +38 −30 packages/eslint-config/loose.js
  48. +24 −0 packages/eslint-config/overrides.d.ts
  49. +330 −265 packages/eslint-config/overrides.js
  50. +43 −38 packages/eslint-config/package.json
  51. +3 −0 packages/eslint-config/recommended.d.ts
  52. +6 −1 packages/eslint-config/recommended.js
  53. +7 −0 packages/lib-config/CHANGELOG.md
  54. +4 −4 packages/lib-config/package.json
  55. +8 −0 packages/lint-staged/CHANGELOG.md
  56. +4 −4 packages/lint-staged/_utils.js
  57. +5 −6 packages/lint-staged/base.js
  58. +1 −1 packages/lint-staged/index.js
  59. +4 −3 packages/lint-staged/ngc.js
  60. +15 −6 packages/lint-staged/package.json
  61. +4 −3 packages/lint-staged/tsc.js
  62. +4 −3 packages/lint-staged/vue-tsc.js
  63. +3 −4 packages/markuplint-config/package.json
  64. +0 −6 packages/markuplint-config/svelte.js
  65. +1 −0 packages/postcss-config/index.d.ts
  66. +32 −10 packages/postcss-config/index.js
  67. +20 −8 packages/postcss-config/package.json
  68. +13 −0 packages/prettier-config/CHANGELOG.md
  69. +1 −0 packages/prettier-config/angular.d.ts
  70. +5 −0 packages/prettier-config/base.d.ts
  71. +15 −4 packages/prettier-config/base.js
  72. +1 −0 packages/prettier-config/index.d.ts
  73. +1 −0 packages/prettier-config/next.d.ts
  74. +20 −10 packages/prettier-config/package.json
  75. +1 −0 packages/prettier-config/quote.d.ts
  76. +1 −0 packages/prettier-config/semi/angular.d.ts
  77. +1 −0 packages/prettier-config/semi/index.d.ts
  78. +1 −0 packages/prettier-config/semi/next.d.ts
  79. +6 −0 packages/prettier-config/semi/next.js
  80. +1 −0 packages/prettier-config/semi/quote.d.ts
  81. +1 −0 packages/prettier-config/semi/vue.d.ts
  82. +0 −14 packages/prettier-config/svelte.js
  83. +1 −0 packages/prettier-config/vue.d.ts
  84. +10 −10 packages/remark-preset/package.json
  85. +6 −0 packages/simple-git-hooks/CHANGELOG.md
  86. +2 −2 packages/simple-git-hooks/index.js
  87. +3 −1 packages/simple-git-hooks/package.json
  88. +13 −0 packages/stylelint-config/CHANGELOG.md
  89. +15 −14 packages/stylelint-config/_overrides.js
  90. +5 −0 packages/stylelint-config/base.d.ts
  91. +12 −8 packages/stylelint-config/base.js
  92. +5 −0 packages/stylelint-config/index.d.ts
  93. +3 −1 packages/stylelint-config/index.js
  94. +5 −0 packages/stylelint-config/loose.d.ts
  95. +3 −1 packages/stylelint-config/loose.js
  96. +5 −0 packages/stylelint-config/modules.d.ts
  97. +7 −1 packages/stylelint-config/modules.js
  98. +22 −14 packages/stylelint-config/package.json
  99. +5 −0 packages/stylelint-config/scss/base.d.ts
  100. +8 −2 packages/stylelint-config/scss/base.js
  101. +1 −0 packages/stylelint-config/scss/index.d.ts
  102. +1 −1 packages/stylelint-config/scss/index.js
  103. +5 −0 packages/stylelint-config/scss/loose.d.ts
  104. +8 −2 packages/stylelint-config/scss/loose.js
  105. +0 −13 patches/stylelint-config-prettier+9.0.5.patch
  106. +1 −0 tests/test.js
  107. +1 −1 tests/test.jsonc
  108. +3 −1 tests/test.scss
  109. +5 −6 tests/test.spec.ts
  110. +0 −24 tests/test.styl
  111. +0 −25 tests/test.svelte
  112. +7 −6 tests/test2.ts
  113. +2 −1 tests/test3.tsx
  114. 0 vitest.config.ts → vitest.config.mts
  115. +18,565 −14,945 yarn.lock
1 change: 0 additions & 1 deletion .codesandbox/ci.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"node": "18",
"installCommand": "codesandbox:install",
"buildCommand": false,
"sandboxes": []
}
16 changes: 8 additions & 8 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
root = true
root=true

[*]
indent_style = space
indent_size = 2
tab_width = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style=space
indent_size=2
tab_width=2
end_of_line=lf
charset=utf-8
trim_trailing_whitespace=true
insert_final_newline=true
7 changes: 0 additions & 7 deletions .eslintignore

This file was deleted.

15 changes: 0 additions & 15 deletions .eslintrc

This file was deleted.

17 changes: 12 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -4,16 +4,23 @@ on:
- push
- pull_request

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
ci:
name: Lint and Test with Node.js ${{ matrix.node }}
strategy:
matrix:
node:
- 16
- 18
- 20
- 22
fail-fast: false
runs-on: ubuntu-latest
env:
YARN_IGNORE_NODE: 1
steps:
- name: Checkout Repo
uses: actions/checkout@v4
@@ -25,20 +32,20 @@ jobs:
cache: yarn

- name: Install Dependencies
run: yarn --frozen-lockfile --ignore-engines
run: yarn --immutable

- name: Check, Lint and test
run: |
yarn run check
yarn browserslist
yarn check
yarn dlx browserslist
yarn lint
yarn test
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true

- name: Check Postcss
run: npx postcss-cli tests/test.css --verbose
run: yarn dlx -p postcss -p postcss-cli postcss tests/test.css --verbose
env:
NODE_ENV: production

4 changes: 4 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -10,6 +10,10 @@ on:
schedule:
- cron: '41 7 * * 1'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
analyze:
name: Analyze
4 changes: 4 additions & 0 deletions .github/workflows/pkg-size.yml
Original file line number Diff line number Diff line change
@@ -5,6 +5,10 @@ on:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
pkg-size-report:
name: Package Size Report
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ jobs:
cache: yarn

- name: Install Dependencies
run: yarn --frozen-lockfile
run: yarn --immutable

- name: Create Release Pull Request or Publish to npm
id: changesets
@@ -36,3 +36,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
YARN_ENABLE_IMMUTABLE_INSTALLS: false
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.yarn/*
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
*.log
*.tsbuildinfo
.*cache
1 change: 0 additions & 1 deletion .lintstagedrc.js

This file was deleted.

1 change: 1 addition & 0 deletions .lintstagedrc.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from '@1stg/lint-staged/tsc'
1 change: 0 additions & 1 deletion .postcssrc.js

This file was deleted.

1 change: 1 addition & 0 deletions .postcssrc.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from '@1stg/postcss-config'
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
.yarn
coverage
# We minify SVGs
**/*.svg
1 change: 0 additions & 1 deletion .simple-git-hooks.js

This file was deleted.

1 change: 1 addition & 0 deletions .simple-git-hooks.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from '@1stg/simple-git-hooks'
7 changes: 6 additions & 1 deletion .stylelintignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
coverage
LICENSE
.type-coverage
.*ignore
*.cjs
*.iml
*.cjs
*.js
*.json
*.jsonc
*.json5
*.jsx
*.lock
*.log
*.mjs
*.mts
*.patch
# TODE: make it work
# TODO: make it work
*.pug
*.sh
*.svg
1 change: 1 addition & 0 deletions .yarn/plugins/plugin-prepare-lifecycle.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports={name:"plugin-prepare-lifecycle",factory:e=>({hooks:{afterAllInstalled(r){if(!r.topLevelWorkspace.manifest.scripts.get("prepare"))return;e("@yarnpkg/shell").execute("yarn prepare")}}})};
Loading