Skip to content

Commit e4c4a9d

Browse files
authored
chore: update postcss (#18647)
1 parent ee3f700 commit e4c4a9d

File tree

12 files changed

+414
-496
lines changed

12 files changed

+414
-496
lines changed

examples/external-prebundle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"jest-resolve": "^27.4.2",
3939
"jest-watch-typeahead": "^1.0.0",
4040
"mini-css-extract-plugin": "^2.4.5",
41-
"postcss": "^8.4.38",
41+
"postcss": "^8.5.6",
4242
"postcss-flexbugs-fixes": "^5.0.2",
4343
"postcss-loader": "^6.2.1",
4444
"postcss-normalize": "^10.0.1",

examples/input-readonly-taro4/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"stylelint": "^16.4.0",
8383
"typescript": "^5.4.5",
8484
"tsconfig-paths-webpack-plugin": "^4.1.0",
85-
"postcss": "^8.4.38",
85+
"postcss": "^8.5.6",
8686
"@types/node": "^18"
8787
}
8888
}

examples/mini-program-example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"@typescript-eslint/parser": "^5.20.0",
8080
"@typescript-eslint/eslint-plugin": "^5.20.0",
8181
"typescript": "^4.1.0",
82-
"postcss": "^8.4.38",
82+
"postcss": "^8.5.6",
8383
"ts-node": "^10.9.1",
8484
"@types/node": "^18"
8585
}

examples/swiper-effect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"eslint-config-taro": "4.0.7",
7272
"eslint-plugin-react": "^7.34.1",
7373
"eslint-plugin-react-hooks": "^4.4.0",
74-
"postcss": "^8.4.38",
74+
"postcss": "^8.5.6",
7575
"react-refresh": "^0.14.0",
7676
"sass": "^1.75.0",
7777
"stylelint": "^16.4.0",

examples/taro-list/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"@typescript-eslint/eslint-plugin": "^6.2.0",
8181
"typescript": "^5.1.0",
8282
"tsconfig-paths-webpack-plugin": "^4.1.0",
83-
"postcss": "^8.4.38",
83+
"postcss": "^8.5.6",
8484
"ts-node": "^10.9.1",
8585
"@types/node": "^18",
8686
"@types/jest": "^29.3.1",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
"minimist": "^1.2.8",
146146
"mkdirp": "^3.0.1",
147147
"npm-run-all": "^4.1.2",
148-
"postcss": "^8.4.38",
148+
"postcss": "^8.5.6",
149149
"postcss-less": "^6.0.0",
150150
"postcss-scss": "^4.0.3",
151151
"power-assert": "^1.6.1",

packages/taro-cli-convertor/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,22 +41,22 @@
4141
"@babel/generator": "^7.24.4",
4242
"@babel/template": "^7.24.0",
4343
"@babel/traverse": "^7.24.1",
44-
"@tarojs/binding": "workspace:*",
4544
"@babel/types": "^7.24.0",
45+
"@tarojs/binding": "workspace:*",
4646
"@tarojs/cli": "workspace:*",
4747
"@tarojs/helper": "workspace:*",
4848
"@tarojs/shared": "workspace:*",
4949
"@tarojs/taroize": "workspace:*",
5050
"@tarojs/transformer-wx": "workspace:*",
51-
"postcss": "^8.4.38",
5251
"postcss-taro-unit-transform": "workspace:*",
5352
"prettier": "^2.8.8"
5453
},
5554
"devDependencies": {
5655
"@babel/parser": "^7.24.4",
56+
"@tarojs/taro": "workspace:*",
5757
"@types/babel__generator": "^7.6.8",
5858
"@types/babel__template": "^7.4.4",
5959
"@types/babel__traverse": "^7.20.5",
60-
"@tarojs/taro": "workspace:*"
60+
"postcss": "^8.5.6"
6161
}
6262
}

packages/taro-cli/templates/default/package.json.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
"stylelint": "^16.4.0"{{#if typescript }},
115115
"typescript": "^5.4.5",
116116
"tsconfig-paths-webpack-plugin": "^4.1.0"{{/if}},
117-
"postcss": "^8.4.38",
117+
"postcss": "^8.5.6"
118118
"@types/node": "^18",
119119
"@types/minimatch": "^5"
120120
}{{/if}}{{#if (eq compiler "Vite") }}
@@ -152,7 +152,7 @@
152152
"less": "^4.2.0",{{/if}}{{#if (eq css "Stylus") }}
153153
"stylus": "^0.63.0",{{/if}}{{#if typescript }}
154154
"typescript": "^5.4.5",{{/if}}
155-
"postcss": "^8.4.38",
155+
"postcss": "^8.5.6"
156156
"@types/minimatch": "^5"
157157
}{{/if}}
158158
}

packages/taro-platform-harmony-cpp/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
"@tarojs/vite-runner": "workspace:*",
6666
"@types/conventional-commits-parser": "^3.0.0",
6767
"conventional-commits-parser": "^3.0.0",
68-
"postcss": "^8.4.38",
6968
"prettier": "^2.8.8",
7069
"rollup-plugin-copy": "workspace:*",
7170
"solid-js": "^1.8.17",

packages/taro-rn-style-transformer/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@
4848
"taro-css-to-react-native": "workspace:*"
4949
},
5050
"devDependencies": {
51-
"@babel/core": "^7.14.5",
52-
"postcss": "^8.4.38"
51+
"@babel/core": "^7.14.5"
5352
},
5453
"peerDependencies": {
5554
"postcss": ">= 8"

0 commit comments

Comments
 (0)