Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20
28 changes: 13 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-styling-webpack",
"version": "1.0.1",
"version": "2.0.0",
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Please note: I've bumped the version as I saw Shaun was doing it himself and I suspect it's not auto-managed. If version is managed via release commits (using Shaun's identity 😬), this will need to be reverted.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Mental note: must definitely be reverted. Will do it later so as not to mess up with your branch history while you're working on this, Norbert.

"description": "A base addon for configuring popular styling tools in Webpack",
"keywords": [
"style",
Expand All @@ -20,14 +20,14 @@
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
"import": "./dist/index.mjs"
},
"./preset": {
"types": "./dist/preset.d.ts",
"require": "./dist/preset.js",
"import": "./dist/preset.mjs",
"types": "./dist/preset.d.ts"
"import": "./dist/preset.mjs"
Comment on lines +23 to +30
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Fixed import order warning in more recent bundlers

},
"./package.json": "./package.json",
"./postinstall": "./postinstall.js"
Expand All @@ -48,17 +48,15 @@
"clean": "rimraf dist && rimraf bin",
"release": "pnpm build && auto shipit"
},
"dependencies": {
"@storybook/node-logger": "^8.0.0-alpha.10"
},
"devDependencies": {
"@types/node": "^18.0.0",
"auto": "^11.1.1",
"prettier": "^3.2.0",
"rimraf": "^3.0.2",
"tsup": "^6.7.0",
"typescript": "^5.3.0",
"webpack": "^5.0.0"
"@types/node": "^22.15.29",
"auto": "^11.3.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"storybook": "^9.0.4",
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Instead of node-logger which has been internalised.

"tsup": "^8.5.0",
"typescript": "^5.8.3",
"webpack": "^5.99.9"
},
"peerDependencies": {
"webpack": "^5.0.0"
Expand Down
Loading
Loading