diff --git a/.changeset/smart-pumpkins-yawn.md b/.changeset/smart-pumpkins-yawn.md deleted file mode 100644 index 8559f4af..00000000 --- a/.changeset/smart-pumpkins-yawn.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@1stg/app-config": major -"@1stg/common-config": major -"@1stg/lib-config": major ---- - -build!: migrate to `pnpm`, `yarn-deduplicate` has been removed, you'll need to install it manually if you're still using `yarn@v1` diff --git a/.changeset/strong-mayflies-eat.md b/.changeset/strong-mayflies-eat.md deleted file mode 100644 index 1bc5f9d6..00000000 --- a/.changeset/strong-mayflies-eat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@1stg/markuplint-config": minor ---- - -feat: support `svelte` diff --git a/.changeset/yellow-beers-hide.md b/.changeset/yellow-beers-hide.md deleted file mode 100644 index 0e55689c..00000000 --- a/.changeset/yellow-beers-hide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@1stg/stylelint-config": minor ---- - -feat: disable `prettier/prettier` for files handled by `eslint` already diff --git a/.changeset/yellow-hornets-wash.md b/.changeset/yellow-hornets-wash.md deleted file mode 100644 index edaa7d36..00000000 --- a/.changeset/yellow-hornets-wash.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@1stg/app-config": patch -"@1stg/common-config": patch -"@1stg/eslint-config": patch -"@1stg/lib-config": patch -"@1stg/lint-staged": patch -"@1stg/markuplint-config": patch ---- - -fix: support more `markup` files diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json index 88e5aa37..3ee9db72 100644 --- a/.codesandbox/ci.json +++ b/.codesandbox/ci.json @@ -1,5 +1,6 @@ { "node": "16", + "installCommand": "codesanbox:install", "buildCommand": false, "sandboxes": [] } diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ac36216..191e3d07 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: cache: pnpm - name: Install Dependencies - run: pnpm i --frozen-lockfile + run: pnpm i - name: Check, Lint and test run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42223429..4cad66d3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: cache: pnpm - name: Install Dependencies - run: pnpm i --frozen-lockfile + run: pnpm i - name: Create Release Pull Request or Publish to npm id: changesets diff --git a/package.json b/package.json index d05fabc8..de2961ef 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "check": "run-p check:*", "check:eslint": "eslint-config-prettier .eslintrc.js", "check:stylelint": "stylelint-config-prettier-check", + "codesanbox:install": "npx pnpm@7.5.0 i", "lint": "run-p lint:*", "lint:es": "eslint . --cache -f friendly", "lint:style": "stylelint . --cache", diff --git a/packages/app-config/CHANGELOG.md b/packages/app-config/CHANGELOG.md index 369a7d7c..06d9a468 100644 --- a/packages/app-config/CHANGELOG.md +++ b/packages/app-config/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## 6.0.0 + +### Major Changes + +- [#126](https://github.com/1stG/configs/pull/126) [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8) Thanks [@JounQin](https://github.com/JounQin)! - build!: migrate to `pnpm`, `yarn-deduplicate` has been removed, you'll need to install it manually if you're still using `yarn@v1` + +### Patch Changes + +- [#126](https://github.com/1stG/configs/pull/126) [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8) Thanks [@JounQin](https://github.com/JounQin)! - fix: support more `markup` files + +- Updated dependencies [[`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8), [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8), [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8)]: + - @1stg/common-config@6.0.0 + - @1stg/stylelint-config@4.5.0 + ## 5.2.7 ### Patch Changes diff --git a/packages/app-config/package.json b/packages/app-config/package.json index 31b68f13..ee7b070e 100644 --- a/packages/app-config/package.json +++ b/packages/app-config/package.json @@ -1,6 +1,6 @@ { "name": "@1stg/app-config", - "version": "5.2.7", + "version": "6.0.0", "description": "Personal but Shareable App Configuration for all 1stG.me projects", "repository": "git+https://github.com/1stG/configs.git", "homepage": "https://github.com/1stG/configs/tree/master/packages/app-config", @@ -43,9 +43,9 @@ }, "dependencies": { "@1stg/browserslist-config": "^1.2.3", - "@1stg/common-config": "^5.2.7", + "@1stg/common-config": "^6.0.0", "@1stg/postcss-config": "^3.2.4", - "@1stg/stylelint-config": "^4.4.5", + "@1stg/stylelint-config": "^4.5.0", "@pkgr/es-modules": "^0.6.2", "@pkgr/imagemin": "^3.1.1", "browserslist": "^4.21.1", diff --git a/packages/common-config/CHANGELOG.md b/packages/common-config/CHANGELOG.md index 02614af7..80ca6c0d 100644 --- a/packages/common-config/CHANGELOG.md +++ b/packages/common-config/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## 6.0.0 + +### Major Changes + +- [#126](https://github.com/1stG/configs/pull/126) [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8) Thanks [@JounQin](https://github.com/JounQin)! - build!: migrate to `pnpm`, `yarn-deduplicate` has been removed, you'll need to install it manually if you're still using `yarn@v1` + +### Patch Changes + +- [#126](https://github.com/1stG/configs/pull/126) [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8) Thanks [@JounQin](https://github.com/JounQin)! - fix: support more `markup` files + +- Updated dependencies [[`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8), [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8)]: + - @1stg/markuplint-config@2.2.0 + - @1stg/eslint-config@5.3.1 + - @1stg/lint-staged@3.2.1 + ## 5.2.7 ### Patch Changes diff --git a/packages/common-config/package.json b/packages/common-config/package.json index d6fd73e5..da5eefa5 100644 --- a/packages/common-config/package.json +++ b/packages/common-config/package.json @@ -1,6 +1,6 @@ { "name": "@1stg/common-config", - "version": "5.2.7", + "version": "6.0.0", "description": "Personal but Shareable Common Configuration for all 1stG.me projects", "repository": "git+https://github.com/1stG/configs.git", "homepage": "https://github.com/1stG/configs/tree/master/packages/common-config", @@ -44,9 +44,9 @@ "dependencies": { "@1stg/babel-preset": "^3.1.4", "@1stg/commitlint-config": "^3.1.4", - "@1stg/eslint-config": "^5.3.0", - "@1stg/lint-staged": "^3.2.0", - "@1stg/markuplint-config": "^2.1.4", + "@1stg/eslint-config": "^5.3.1", + "@1stg/lint-staged": "^3.2.1", + "@1stg/markuplint-config": "^2.2.0", "@1stg/prettier-config": "^3.6.0", "@1stg/remark-config": "^4.0.3", "@1stg/simple-git-hooks": "^0.2.1", diff --git a/packages/eslint-config/CHANGELOG.md b/packages/eslint-config/CHANGELOG.md index 74f2cfe9..b0b6fed2 100644 --- a/packages/eslint-config/CHANGELOG.md +++ b/packages/eslint-config/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 5.3.1 + +### Patch Changes + +- [#126](https://github.com/1stG/configs/pull/126) [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8) Thanks [@JounQin](https://github.com/JounQin)! - fix: support more `markup` files + ## 5.3.0 ### Minor Changes diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index 93b87e66..88ca3c82 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@1stg/eslint-config", - "version": "5.3.0", + "version": "5.3.1", "description": "Personal but Shareable ESLint Configuration for all 1stG.me projects", "repository": "git+https://github.com/1stG/configs.git", "homepage": "https://github.com/1stG/configs/tree/master/packages/eslint-config", diff --git a/packages/lib-config/CHANGELOG.md b/packages/lib-config/CHANGELOG.md index 180de052..7755e9d4 100644 --- a/packages/lib-config/CHANGELOG.md +++ b/packages/lib-config/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## 8.0.0 + +### Major Changes + +- [#126](https://github.com/1stG/configs/pull/126) [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8) Thanks [@JounQin](https://github.com/JounQin)! - build!: migrate to `pnpm`, `yarn-deduplicate` has been removed, you'll need to install it manually if you're still using `yarn@v1` + +### Patch Changes + +- [#126](https://github.com/1stG/configs/pull/126) [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8) Thanks [@JounQin](https://github.com/JounQin)! - fix: support more `markup` files + +- Updated dependencies [[`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8), [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8)]: + - @1stg/common-config@6.0.0 + ## 7.2.7 ### Patch Changes diff --git a/packages/lib-config/package.json b/packages/lib-config/package.json index 0328ef4d..6d28e822 100644 --- a/packages/lib-config/package.json +++ b/packages/lib-config/package.json @@ -1,6 +1,6 @@ { "name": "@1stg/lib-config", - "version": "7.2.7", + "version": "8.0.0", "description": "Personal but Shareable Library Configuration for all 1stG.me projects", "repository": "git+https://github.com/1stG/configs.git", "homepage": "https://github.com/1stG/configs/tree/master/packages/lib-config", @@ -42,7 +42,7 @@ "node": "^12.20.0 || ^14.18.0 || >=16.0.0" }, "dependencies": { - "@1stg/common-config": "^5.2.7", + "@1stg/common-config": "^6.0.0", "@pkgr/rollup": "^3.1.4", "jest": "^28.1.2" }, diff --git a/packages/lint-staged/CHANGELOG.md b/packages/lint-staged/CHANGELOG.md index 82790857..772cf4ca 100644 --- a/packages/lint-staged/CHANGELOG.md +++ b/packages/lint-staged/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 3.2.1 + +### Patch Changes + +- [#126](https://github.com/1stG/configs/pull/126) [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8) Thanks [@JounQin](https://github.com/JounQin)! - fix: support more `markup` files + ## 3.2.0 ### Minor Changes diff --git a/packages/lint-staged/package.json b/packages/lint-staged/package.json index 71aaa421..5400e42f 100644 --- a/packages/lint-staged/package.json +++ b/packages/lint-staged/package.json @@ -1,6 +1,6 @@ { "name": "@1stg/lint-staged", - "version": "3.2.0", + "version": "3.2.1", "description": "Personal but Shareable lint-staged Configuration for all 1stG.me projects", "repository": "git+https://github.com/1stG/configs.git", "author": "JounQin (https://www.1stG.me) ", diff --git a/packages/markuplint-config/CHANGELOG.md b/packages/markuplint-config/CHANGELOG.md index 7313dbef..d3f97832 100644 --- a/packages/markuplint-config/CHANGELOG.md +++ b/packages/markuplint-config/CHANGELOG.md @@ -1,5 +1,15 @@ # @1stg/markuplint-config +## 2.2.0 + +### Minor Changes + +- [#126](https://github.com/1stG/configs/pull/126) [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8) Thanks [@JounQin](https://github.com/JounQin)! - feat: support `svelte` + +### Patch Changes + +- [#126](https://github.com/1stG/configs/pull/126) [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8) Thanks [@JounQin](https://github.com/JounQin)! - fix: support more `markup` files + ## 2.1.4 ### Patch Changes diff --git a/packages/markuplint-config/package.json b/packages/markuplint-config/package.json index 5010fc6a..d8c02dee 100644 --- a/packages/markuplint-config/package.json +++ b/packages/markuplint-config/package.json @@ -1,6 +1,6 @@ { "name": "@1stg/markuplint-config", - "version": "2.1.4", + "version": "2.2.0", "description": "Personal but Shareable markuplint Configuration for all 1stG.me projects", "repository": "git+https://github.com/1stG/configs.git", "homepage": "https://github.com/1stG/configs/tree/master/packages/markuplint-config", diff --git a/packages/stylelint-config/CHANGELOG.md b/packages/stylelint-config/CHANGELOG.md index d3225454..3bfec4f8 100644 --- a/packages/stylelint-config/CHANGELOG.md +++ b/packages/stylelint-config/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 4.5.0 + +### Minor Changes + +- [#126](https://github.com/1stG/configs/pull/126) [`48d7542`](https://github.com/1stG/configs/commit/48d754293d6d68094792df71d56e8d7e8fc088a8) Thanks [@JounQin](https://github.com/JounQin)! - feat: disable `prettier/prettier` for files handled by `eslint` already + ## 4.4.5 ### Patch Changes diff --git a/packages/stylelint-config/package.json b/packages/stylelint-config/package.json index 3b8cf6b1..c2fbb1c2 100644 --- a/packages/stylelint-config/package.json +++ b/packages/stylelint-config/package.json @@ -1,6 +1,6 @@ { "name": "@1stg/stylelint-config", - "version": "4.4.5", + "version": "4.5.0", "description": "Personal but Shareable Stylelint Configuration for all 1stG.me projects", "repository": "git+https://github.com/1stG/configs.git", "author": "JounQin (https://www.1stG.me) ", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8c47b2e4..45c85a36 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -63,7 +63,7 @@ importers: react: 18.2.0 rxjs: 7.5.5 svelte: 3.49.0 - ts-jest: 28.0.5_d7p7jfykgzko2wul3x4xic5voa + ts-jest: 28.0.5_lt5llx2ti6zt4eclhanfli5ynu type-coverage: 2.21.2_typescript@4.7.4 typescript: 4.7.4 vue: 3.2.37 @@ -72,9 +72,9 @@ importers: packages/app-config: specifiers: '@1stg/browserslist-config': ^1.2.3 - '@1stg/common-config': ^5.2.7 + '@1stg/common-config': ^6.0.0 '@1stg/postcss-config': ^3.2.4 - '@1stg/stylelint-config': ^4.4.5 + '@1stg/stylelint-config': ^4.5.0 '@pkgr/es-modules': ^0.6.2 '@pkgr/imagemin': ^3.1.1 browserslist: ^4.21.1 @@ -148,9 +148,9 @@ importers: specifiers: '@1stg/babel-preset': ^3.1.4 '@1stg/commitlint-config': ^3.1.4 - '@1stg/eslint-config': ^5.3.0 - '@1stg/lint-staged': ^3.2.0 - '@1stg/markuplint-config': ^2.1.4 + '@1stg/eslint-config': ^5.3.1 + '@1stg/lint-staged': ^3.2.1 + '@1stg/markuplint-config': ^2.2.0 '@1stg/prettier-config': ^3.6.0 '@1stg/remark-config': ^4.0.3 '@1stg/simple-git-hooks': ^0.2.1 @@ -274,7 +274,7 @@ importers: packages/lib-config: specifiers: - '@1stg/common-config': ^5.2.7 + '@1stg/common-config': ^6.0.0 '@pkgr/rollup': ^3.1.4 jest: ^28.1.2 dependencies: @@ -14068,7 +14068,7 @@ packages: resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==} dev: false - /ts-jest/28.0.5_d7p7jfykgzko2wul3x4xic5voa: + /ts-jest/28.0.5_lt5llx2ti6zt4eclhanfli5ynu: resolution: {integrity: sha512-Sx9FyP9pCY7pUzQpy4FgRZf2bhHY3za576HMKJFs+OnQ9jS96Du5vNsDKkyedQkik+sEabbKAnCliv9BEsHZgQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true @@ -14086,7 +14086,6 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.18.6 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 jest: 28.1.2_@types+node@18.0.3