Skip to content

Commit 8c7ef85

Browse files
committed
update the site
1 parent 6228d32 commit 8c7ef85

6 files changed

Lines changed: 100 additions & 54 deletions

File tree

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugin-packs/postcss-preset-env/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ This gives users the chance to play around with these features and provide feedb
453453
If the specification changes or is abandoned a new major version of the plugin will be released.
454454
This will require you to update your source code so that everything works as expected.
455455

456-
To have more stability between updates of [PostCSS Preset Env] you may set `stage: 3` and/or `minimumVendorImplementations: 2`.
456+
To have more stability between updates of [PostCSS Preset Env] you may set `minimumVendorImplementations: 2` or more.
457457

458458
A side effect of staying close to the standard is that you can more easily migrate your project to other tooling all together.
459459

sites/package-lock.json

Lines changed: 89 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sites/postcss-preset-env/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"npm-run-all": "^4.1.5",
8080
"postcss": "^8.5.6",
8181
"postcss-cli": "^11.0.1",
82-
"postcss-preset-env": "^10.5.0",
82+
"postcss-preset-env": "^10.6.0",
8383
"rollup": "^4.53.3",
8484
"rollup-plugin-filesize": "^10.0.0",
8585
"rollup-plugin-livereload": "^2.0.5"

sites/postcss-preset-env/rollup.config.mjs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ import terser from '@rollup/plugin-terser';
88
const production = !process.env.ROLLUP_WATCH;
99

1010
export default [
11-
'scripts',
11+
// 'scripts',
1212
'playground',
13-
'blog_calc_2023_02_21',
14-
'blog_color_parser_2023_03_27',
15-
'blog_color_mix_2023_03_27',
16-
'blog_relative_color_syntax_2023_05_22',
17-
'blog_relative_color_syntax_channel_values_2024_03_02',
13+
// 'blog_calc_2023_02_21',
14+
// 'blog_color_parser_2023_03_27',
15+
// 'blog_color_mix_2023_03_27',
16+
// 'blog_relative_color_syntax_2023_05_22',
17+
// 'blog_relative_color_syntax_channel_values_2024_03_02',
1818
].map(name => ({
1919
input: `src/static/js/${name}.js`,
2020
output: [

sites/postcss-preset-env/src/static/js/playground.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ function processCss(source, config, isDefaultState = false) {
6464
} catch (err) {
6565
if (err.browserslist) {
6666
alert(`${err.message}\n\nTry changing the browserslist config.`);
67+
} else {
68+
alert(`${err.message}\n\nTry changing the postcss-preset-env config.`);
6769
}
6870

6971
// eslint-disable-next-line no-console

0 commit comments

Comments
 (0)