From 84e700a5ba086d263b5c464a8ad8bdc1b71393c4 Mon Sep 17 00:00:00 2001 From: kagawagao Date: Tue, 6 Aug 2024 13:36:02 +0800 Subject: [PATCH] chore(release): publish 0.12.4 --- CHANGELOG.md | 10 ++++ examples/react-app/CHANGELOG.md | 4 ++ examples/react-app/package.json | 6 +-- examples/vue-app/CHANGELOG.md | 4 ++ examples/vue-app/package.json | 6 +-- lerna.json | 2 +- package-lock.json | 62 ++++++++++++------------ packages/bundler-base/CHANGELOG.md | 4 ++ packages/bundler-base/package.json | 4 +- packages/bundler-mako/CHANGELOG.md | 4 ++ packages/bundler-mako/package.json | 6 +-- packages/bundler-vite/CHANGELOG.md | 4 ++ packages/bundler-vite/package.json | 6 +-- packages/bundler-webpack/CHANGELOG.md | 6 +++ packages/bundler-webpack/package.json | 6 +-- packages/cli/CHANGELOG.md | 4 ++ packages/cli/package.json | 16 +++--- packages/common/CHANGELOG.md | 6 +++ packages/common/package.json | 2 +- packages/eslint-config/CHANGELOG.md | 6 +++ packages/eslint-config/package.json | 2 +- packages/stylelint-config/CHANGELOG.md | 6 +++ packages/stylelint-config/package.json | 2 +- templates/react-ts-template/CHANGELOG.md | 4 ++ templates/react-ts-template/package.json | 6 +-- 25 files changed, 125 insertions(+), 63 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bf97c5..123ca0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.4](https://github.com/kagawagao/pixas/compare/v0.12.3...v0.12.4) (2024-08-06) + +### Bug Fixes + +- **eslint-config:** fix eslint rules ([f63277e](https://github.com/kagawagao/pixas/commit/f63277e47fba86a01a9d0634bab1ebfc081d73c9)) + +### Chores + +- update husky config ([ec69265](https://github.com/kagawagao/pixas/commit/ec69265e41c087d62eeff09fd7c9106b0e881c38)) + ## [0.12.3](https://github.com/kagawagao/pixas/compare/v0.12.2...v0.12.3) (2024-08-06) ### Chores diff --git a/examples/react-app/CHANGELOG.md b/examples/react-app/CHANGELOG.md index 16dc95f..e398f35 100644 --- a/examples/react-app/CHANGELOG.md +++ b/examples/react-app/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.4](https://github.com/kagawagao/pixas/compare/v0.12.3...v0.12.4) (2024-08-06) + +**Note:** Version bump only for package @pixas/react-app + ## [0.12.3](https://github.com/kagawagao/pixas/compare/v0.12.2...v0.12.3) (2024-08-06) **Note:** Version bump only for package @pixas/react-app diff --git a/examples/react-app/package.json b/examples/react-app/package.json index bc35d26..a3be2b7 100644 --- a/examples/react-app/package.json +++ b/examples/react-app/package.json @@ -1,7 +1,7 @@ { "name": "@pixas/react-app", "description": "pixas react app demo", - "version": "0.12.3", + "version": "0.12.4", "private": true, "scripts": { "dev": "pixas dev", @@ -14,8 +14,8 @@ }, "devDependencies": { "@pixas/babel-preset-app": "^0.12.0", - "@pixas/bundler-webpack": "^0.12.3", - "@pixas/cli": "^0.12.3", + "@pixas/bundler-webpack": "^0.12.4", + "@pixas/cli": "^0.12.4", "@types/react": "^18.3.2", "@types/react-dom": "^18.3.0" }, diff --git a/examples/vue-app/CHANGELOG.md b/examples/vue-app/CHANGELOG.md index d0daad2..24152e5 100644 --- a/examples/vue-app/CHANGELOG.md +++ b/examples/vue-app/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.4](https://github.com/kagawagao/pixas/compare/v0.12.3...v0.12.4) (2024-08-06) + +**Note:** Version bump only for package @pixas/vue-app + ## [0.12.3](https://github.com/kagawagao/pixas/compare/v0.12.2...v0.12.3) (2024-08-06) **Note:** Version bump only for package @pixas/vue-app diff --git a/examples/vue-app/package.json b/examples/vue-app/package.json index 221f68d..902a9b9 100644 --- a/examples/vue-app/package.json +++ b/examples/vue-app/package.json @@ -1,6 +1,6 @@ { "name": "@pixas/vue-app", - "version": "0.12.3", + "version": "0.12.4", "description": "pixas vue app demo", "private": true, "scripts": { @@ -11,8 +11,8 @@ "vue": "^3.4.27" }, "devDependencies": { - "@pixas/bundler-vite": "^0.12.3", - "@pixas/cli": "^0.12.3", + "@pixas/bundler-vite": "^0.12.4", + "@pixas/cli": "^0.12.4", "@vue/babel-preset-app": "^5.0.8", "@vue/tsconfig": "^0.5.1" }, diff --git a/lerna.json b/lerna.json index 4fe237e..a83bc96 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "$schema": "./node_modules/lerna/schemas/lerna-schema.json", "packages": ["packages/*", "templates/*", "examples/*"], - "version": "0.12.3", + "version": "0.12.4", "ignoreChanges": ["**/__fixtures__/**", "**/__tests__/**", "**/*.md", "**/package-lock.json"], "command": { "version": { diff --git a/package-lock.json b/package-lock.json index 09ced68..4ce8346 100644 --- a/package-lock.json +++ b/package-lock.json @@ -38,28 +38,28 @@ }, "examples/react-app": { "name": "@pixas/react-app", - "version": "0.12.3", + "version": "0.12.4", "dependencies": { "react": "^18.3.1", "react-dom": "^18.3.1" }, "devDependencies": { "@pixas/babel-preset-app": "^0.12.0", - "@pixas/bundler-webpack": "^0.12.3", - "@pixas/cli": "^0.12.3", + "@pixas/bundler-webpack": "^0.12.4", + "@pixas/cli": "^0.12.4", "@types/react": "^18.3.2", "@types/react-dom": "^18.3.0" } }, "examples/vue-app": { "name": "@pixas/vue-app", - "version": "0.12.3", + "version": "0.12.4", "dependencies": { "vue": "^3.4.27" }, "devDependencies": { - "@pixas/bundler-vite": "^0.12.3", - "@pixas/cli": "^0.12.3", + "@pixas/bundler-vite": "^0.12.4", + "@pixas/cli": "^0.12.4", "@vue/babel-preset-app": "^5.0.8", "@vue/tsconfig": "^0.5.1" } @@ -30220,30 +30220,30 @@ }, "packages/bundler-base": { "name": "@pixas/bundler-base", - "version": "0.12.3", + "version": "0.12.4", "license": "MIT", "dependencies": { - "@pixas/common": "^0.12.3" + "@pixas/common": "^0.12.4" } }, "packages/bundler-mako": { "name": "@pixas/bundler-mako", - "version": "0.12.3", + "version": "0.12.4", "license": "MIT", "dependencies": { - "@pixas/bundler-base": "^0.12.3", - "@pixas/common": "^0.12.3", + "@pixas/bundler-base": "^0.12.4", + "@pixas/common": "^0.12.4", "@umijs/mako": "^0.7.3", "jsdom": "^24.1.0" } }, "packages/bundler-vite": { "name": "@pixas/bundler-vite", - "version": "0.12.3", + "version": "0.12.4", "license": "MIT", "dependencies": { - "@pixas/bundler-base": "^0.12.3", - "@pixas/common": "^0.12.3", + "@pixas/bundler-base": "^0.12.4", + "@pixas/common": "^0.12.4", "@vitejs/plugin-react": "^4.2.1", "@vitejs/plugin-vue": "^5.0.4", "ejs": "^3.1.6", @@ -30258,13 +30258,13 @@ }, "packages/bundler-webpack": { "name": "@pixas/bundler-webpack", - "version": "0.12.3", + "version": "0.12.4", "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10", "@opd/css-modules-typings-loader": "^1.4.1", - "@pixas/bundler-base": "^0.12.3", - "@pixas/common": "^0.12.3", + "@pixas/bundler-base": "^0.12.4", + "@pixas/common": "^0.12.4", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.1", "babel-loader": "^9.1.0", "chalk": "^4.1.2", @@ -30302,18 +30302,18 @@ }, "packages/cli": { "name": "@pixas/cli", - "version": "0.12.3", + "version": "0.12.4", "license": "MIT", "dependencies": { "@babel/runtime": "^7.13.10", "@opas/core": "^0.12.0", "@opas/plugin-app": "^0.12.0", "@pixas/babel-preset-app": "^0.12.0", - "@pixas/bundler-base": "^0.12.3", - "@pixas/common": "^0.12.3", - "@pixas/eslint-config": "^0.12.3", + "@pixas/bundler-base": "^0.12.4", + "@pixas/common": "^0.12.4", + "@pixas/eslint-config": "^0.12.4", "@pixas/prettier-config": "^0.12.0", - "@pixas/stylelint-config": "^0.12.0", + "@pixas/stylelint-config": "^0.12.4", "chalk": "^4.1.2", "commander": "11.1.0", "core-js": "^3.10.1", @@ -30325,9 +30325,9 @@ }, "devDependencies": { "@pixas/babel-preset-lib": "^0.12.0", - "@pixas/bundler-mako": "^0.12.3", - "@pixas/bundler-vite": "^0.12.3", - "@pixas/bundler-webpack": "^0.12.3", + "@pixas/bundler-mako": "^0.12.4", + "@pixas/bundler-vite": "^0.12.4", + "@pixas/bundler-webpack": "^0.12.4", "@types/less": "^3.0.3", "@types/react-dev-utils": "^9.0.11", "@types/webpack-node-externals": "^3.0.0" @@ -30356,7 +30356,7 @@ }, "packages/common": { "name": "@pixas/common", - "version": "0.12.3", + "version": "0.12.4", "license": "MIT", "dependencies": { "cosmiconfig": "^9.0.0", @@ -30378,7 +30378,7 @@ }, "packages/eslint-config": { "name": "@pixas/eslint-config", - "version": "0.12.3", + "version": "0.12.4", "license": "MIT", "dependencies": { "@babel/eslint-parser": "^7.13.14", @@ -30416,7 +30416,7 @@ }, "packages/stylelint-config": { "name": "@pixas/stylelint-config", - "version": "0.12.0", + "version": "0.12.4", "license": "MIT", "dependencies": { "postcss": "^8.4.5", @@ -30435,7 +30435,7 @@ }, "templates/react-ts-template": { "name": "@pixas/react-ts-template", - "version": "0.12.3", + "version": "0.12.4", "license": "MIT", "dependencies": { "react": "^18.3.1", @@ -30443,8 +30443,8 @@ }, "devDependencies": { "@pixas/babel-preset-app": "^0.12.0", - "@pixas/bundler-webpack": "^0.12.3", - "@pixas/cli": "^0.12.3", + "@pixas/bundler-webpack": "^0.12.4", + "@pixas/cli": "^0.12.4", "@types/react": "^18.3.2", "@types/react-dom": "^18.3.0" } diff --git a/packages/bundler-base/CHANGELOG.md b/packages/bundler-base/CHANGELOG.md index f500444..1ffe455 100644 --- a/packages/bundler-base/CHANGELOG.md +++ b/packages/bundler-base/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.4](https://github.com/kagawagao/pixas/compare/v0.12.3...v0.12.4) (2024-08-06) + +**Note:** Version bump only for package @pixas/bundler-base + ## [0.12.3](https://github.com/kagawagao/pixas/compare/v0.12.2...v0.12.3) (2024-08-06) **Note:** Version bump only for package @pixas/bundler-base diff --git a/packages/bundler-base/package.json b/packages/bundler-base/package.json index 06461c8..8234d99 100644 --- a/packages/bundler-base/package.json +++ b/packages/bundler-base/package.json @@ -1,6 +1,6 @@ { "name": "@pixas/bundler-base", - "version": "0.12.3", + "version": "0.12.4", "description": "base bundler for pixas", "author": "kagawa ", "homepage": "", @@ -26,6 +26,6 @@ "preversion": "npm run build" }, "dependencies": { - "@pixas/common": "^0.12.3" + "@pixas/common": "^0.12.4" } } diff --git a/packages/bundler-mako/CHANGELOG.md b/packages/bundler-mako/CHANGELOG.md index 63392cb..78d4381 100644 --- a/packages/bundler-mako/CHANGELOG.md +++ b/packages/bundler-mako/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.4](https://github.com/kagawagao/pixas/compare/v0.12.3...v0.12.4) (2024-08-06) + +**Note:** Version bump only for package @pixas/bundler-mako + ## [0.12.3](https://github.com/kagawagao/pixas/compare/v0.12.2...v0.12.3) (2024-08-06) **Note:** Version bump only for package @pixas/bundler-mako diff --git a/packages/bundler-mako/package.json b/packages/bundler-mako/package.json index 6ed0ae8..a8ecc3f 100644 --- a/packages/bundler-mako/package.json +++ b/packages/bundler-mako/package.json @@ -1,6 +1,6 @@ { "name": "@pixas/bundler-mako", - "version": "0.12.3", + "version": "0.12.4", "description": "mako bundler for pixas", "author": "kagawa ", "homepage": "", @@ -26,8 +26,8 @@ "preversion": "npm run build" }, "dependencies": { - "@pixas/bundler-base": "^0.12.3", - "@pixas/common": "^0.12.3", + "@pixas/bundler-base": "^0.12.4", + "@pixas/common": "^0.12.4", "@umijs/mako": "^0.7.3", "jsdom": "^24.1.0" } diff --git a/packages/bundler-vite/CHANGELOG.md b/packages/bundler-vite/CHANGELOG.md index 69a5aff..0a3662d 100644 --- a/packages/bundler-vite/CHANGELOG.md +++ b/packages/bundler-vite/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.4](https://github.com/kagawagao/pixas/compare/v0.12.3...v0.12.4) (2024-08-06) + +**Note:** Version bump only for package @pixas/bundler-vite + ## [0.12.3](https://github.com/kagawagao/pixas/compare/v0.12.2...v0.12.3) (2024-08-06) **Note:** Version bump only for package @pixas/bundler-vite diff --git a/packages/bundler-vite/package.json b/packages/bundler-vite/package.json index 4973052..7556f90 100644 --- a/packages/bundler-vite/package.json +++ b/packages/bundler-vite/package.json @@ -1,6 +1,6 @@ { "name": "@pixas/bundler-vite", - "version": "0.12.3", + "version": "0.12.4", "description": "vite bundler for pixas", "author": "kagawa ", "homepage": "", @@ -26,8 +26,8 @@ "preversion": "npm run build" }, "dependencies": { - "@pixas/bundler-base": "^0.12.3", - "@pixas/common": "^0.12.3", + "@pixas/bundler-base": "^0.12.4", + "@pixas/common": "^0.12.4", "@vitejs/plugin-react": "^4.2.1", "@vitejs/plugin-vue": "^5.0.4", "ejs": "^3.1.6", diff --git a/packages/bundler-webpack/CHANGELOG.md b/packages/bundler-webpack/CHANGELOG.md index 173170e..56d7406 100644 --- a/packages/bundler-webpack/CHANGELOG.md +++ b/packages/bundler-webpack/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.4](https://github.com/kagawagao/pixas/compare/v0.12.3...v0.12.4) (2024-08-06) + +### Bug Fixes + +- **eslint-config:** fix eslint rules ([f63277e](https://github.com/kagawagao/pixas/commit/f63277e47fba86a01a9d0634bab1ebfc081d73c9)) + ## [0.12.3](https://github.com/kagawagao/pixas/compare/v0.12.2...v0.12.3) (2024-08-06) ### Chores diff --git a/packages/bundler-webpack/package.json b/packages/bundler-webpack/package.json index 62e90ab..4ed23ef 100644 --- a/packages/bundler-webpack/package.json +++ b/packages/bundler-webpack/package.json @@ -1,6 +1,6 @@ { "name": "@pixas/bundler-webpack", - "version": "0.12.3", + "version": "0.12.4", "description": "webpack bundler for pixas", "author": "kagawa ", "homepage": "", @@ -28,8 +28,8 @@ "dependencies": { "@babel/runtime": "^7.13.10", "@opd/css-modules-typings-loader": "^1.4.1", - "@pixas/bundler-base": "^0.12.3", - "@pixas/common": "^0.12.3", + "@pixas/bundler-base": "^0.12.4", + "@pixas/common": "^0.12.4", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.1", "babel-loader": "^9.1.0", "chalk": "^4.1.2", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index d489df7..7bdb250 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.4](https://github.com/kagawagao/pixas/compare/v0.12.3...v0.12.4) (2024-08-06) + +**Note:** Version bump only for package @pixas/cli + ## [0.12.3](https://github.com/kagawagao/pixas/compare/v0.12.2...v0.12.3) (2024-08-06) **Note:** Version bump only for package @pixas/cli diff --git a/packages/cli/package.json b/packages/cli/package.json index 8d1137c..07bc112 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@pixas/cli", - "version": "0.12.3", + "version": "0.12.4", "description": "front end develop toolkit", "author": "kagawa ", "homepage": "", @@ -37,11 +37,11 @@ "@opas/core": "^0.12.0", "@opas/plugin-app": "^0.12.0", "@pixas/babel-preset-app": "^0.12.0", - "@pixas/bundler-base": "^0.12.3", - "@pixas/common": "^0.12.3", - "@pixas/eslint-config": "^0.12.3", + "@pixas/bundler-base": "^0.12.4", + "@pixas/common": "^0.12.4", + "@pixas/eslint-config": "^0.12.4", "@pixas/prettier-config": "^0.12.0", - "@pixas/stylelint-config": "^0.12.0", + "@pixas/stylelint-config": "^0.12.4", "chalk": "^4.1.2", "commander": "11.1.0", "core-js": "^3.10.1", @@ -62,9 +62,9 @@ }, "devDependencies": { "@pixas/babel-preset-lib": "^0.12.0", - "@pixas/bundler-mako": "^0.12.3", - "@pixas/bundler-vite": "^0.12.3", - "@pixas/bundler-webpack": "^0.12.3", + "@pixas/bundler-mako": "^0.12.4", + "@pixas/bundler-vite": "^0.12.4", + "@pixas/bundler-webpack": "^0.12.4", "@types/less": "^3.0.3", "@types/react-dev-utils": "^9.0.11", "@types/webpack-node-externals": "^3.0.0" diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index 2903ca3..ea1a784 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.4](https://github.com/kagawagao/pixas/compare/v0.12.3...v0.12.4) (2024-08-06) + +### Bug Fixes + +- **eslint-config:** fix eslint rules ([f63277e](https://github.com/kagawagao/pixas/commit/f63277e47fba86a01a9d0634bab1ebfc081d73c9)) + ## [0.12.3](https://github.com/kagawagao/pixas/compare/v0.12.2...v0.12.3) (2024-08-06) ### Chores diff --git a/packages/common/package.json b/packages/common/package.json index ff6adcf..f21cb92 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@pixas/common", - "version": "0.12.3", + "version": "0.12.4", "description": "common utils for pixas", "author": "kagawa ", "homepage": "", diff --git a/packages/eslint-config/CHANGELOG.md b/packages/eslint-config/CHANGELOG.md index 252b6f8..57afe47 100644 --- a/packages/eslint-config/CHANGELOG.md +++ b/packages/eslint-config/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.4](https://github.com/kagawagao/pixas/compare/v0.12.3...v0.12.4) (2024-08-06) + +### Bug Fixes + +- **eslint-config:** fix eslint rules ([f63277e](https://github.com/kagawagao/pixas/commit/f63277e47fba86a01a9d0634bab1ebfc081d73c9)) + ## [0.12.3](https://github.com/kagawagao/pixas/compare/v0.12.2...v0.12.3) (2024-08-06) ### Chores diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index bffa7eb..5b63092 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@pixas/eslint-config", - "version": "0.12.3", + "version": "0.12.4", "description": "flatten eslint config for javascript, typescript, vue, react", "author": "kagawa ", "homepage": "", diff --git a/packages/stylelint-config/CHANGELOG.md b/packages/stylelint-config/CHANGELOG.md index 4260b10..4626f92 100644 --- a/packages/stylelint-config/CHANGELOG.md +++ b/packages/stylelint-config/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.4](https://github.com/kagawagao/pixas/compare/v0.12.3...v0.12.4) (2024-08-06) + +### Bug Fixes + +- **eslint-config:** fix eslint rules ([f63277e](https://github.com/kagawagao/pixas/commit/f63277e47fba86a01a9d0634bab1ebfc081d73c9)) + ## [0.12.0](https://github.com/kagawagao/pixas/compare/v0.11.0...v0.12.0) (2024-07-10) **Note:** Version bump only for package @pixas/stylelint-config diff --git a/packages/stylelint-config/package.json b/packages/stylelint-config/package.json index 975a213..e9a6f8a 100644 --- a/packages/stylelint-config/package.json +++ b/packages/stylelint-config/package.json @@ -1,6 +1,6 @@ { "name": "@pixas/stylelint-config", - "version": "0.12.0", + "version": "0.12.4", "description": "shared stylelint config used by pixas", "author": "kagawa ", "homepage": "", diff --git a/templates/react-ts-template/CHANGELOG.md b/templates/react-ts-template/CHANGELOG.md index 592f975..4021dbd 100644 --- a/templates/react-ts-template/CHANGELOG.md +++ b/templates/react-ts-template/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.4](https://github.com/kagawagao/pixas/compare/v0.12.3...v0.12.4) (2024-08-06) + +**Note:** Version bump only for package @pixas/react-ts-template + ## [0.12.3](https://github.com/kagawagao/pixas/compare/v0.12.2...v0.12.3) (2024-08-06) **Note:** Version bump only for package @pixas/react-ts-template diff --git a/templates/react-ts-template/package.json b/templates/react-ts-template/package.json index 127f8f6..48bc01a 100644 --- a/templates/react-ts-template/package.json +++ b/templates/react-ts-template/package.json @@ -1,6 +1,6 @@ { "name": "@pixas/react-ts-template", - "version": "0.12.3", + "version": "0.12.4", "description": "react typescript application template", "author": "kagawa ", "homepage": "https://github.com/kagawagao/pixas#readme", @@ -23,8 +23,8 @@ }, "devDependencies": { "@pixas/babel-preset-app": "^0.12.0", - "@pixas/bundler-webpack": "^0.12.3", - "@pixas/cli": "^0.12.3", + "@pixas/bundler-webpack": "^0.12.4", + "@pixas/cli": "^0.12.4", "@types/react": "^18.3.2", "@types/react-dom": "^18.3.0" },