Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade Greenwood v0.27.0 #76

Merged
merged 8 commits into from
Nov 23, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"devDependencies": {
"@babel/core": "^7.18.13",
"@esm-bundle/chai": "^4.3.4",
"@greenwood/cli": "~0.26.2",
"@greenwood/plugin-postcss": "~0.26.2",
"@greenwood/cli": "~0.27.0-alpha.3",
"@greenwood/plugin-postcss": "~0.27.0-alpha.3",
"@ls-lint/ls-lint": "^1.10.0",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
Expand All @@ -49,6 +49,7 @@
"eslint": "^8.23.0",
"http-server": "^14.1.1",
"lit-html": "^2.3.1",
"postcss-import": "^12.0.0",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

would be nice to get this "back" from Greenwood again 😅

however, because Storybook only like ^12.x, we might need to apply our own override.

"rimraf": "^3.0.2",
"stylelint": "^13.8.0",
"stylelint-a11y": "^1.2.3",
Expand Down
1 change: 1 addition & 0 deletions postcss.config.cjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = {
plugins: [
require('postcss-import'),
require('tailwindcss'),
require('autoprefixer')
]
Expand Down
1 change: 1 addition & 0 deletions postcss.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export default {
plugins: [
(await import('postcss-import')).default,
(await import('tailwindcss')).default,
(await import('autoprefixer')).default
]
Expand Down
Loading