-
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
128 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,43 @@ | ||
# Changelog | ||
|
||
|
||
## v8.0.0 | ||
|
||
[compare changes](https://github.com/nuxt-modules/storybook/compare/v7.0.2...v8.0.0) | ||
|
||
### 🩹 Fixes | ||
|
||
- Add storybook as dependency ([#516](https://github.com/nuxt-modules/storybook/pull/516)) | ||
- Opt in to `import.meta.*` properties ([#512](https://github.com/nuxt-modules/storybook/pull/512)) | ||
- Remove disable ssr ([#511](https://github.com/nuxt-modules/storybook/pull/511)) | ||
- **deps:** Update nuxtjs monorepo to v3.11.2 ([#521](https://github.com/nuxt-modules/storybook/pull/521)) | ||
- ⚠️ Improve handling of module options ([#518](https://github.com/nuxt-modules/storybook/pull/518)) | ||
- **deps:** Update nuxtjs monorepo to v3.11.2 ([#523](https://github.com/nuxt-modules/storybook/pull/523)) | ||
- **deps:** Update dependency @nuxt/devtools-kit to v1.1.5 ([#506](https://github.com/nuxt-modules/storybook/pull/506)) | ||
- **deps:** Update dependency chalk to v5 ([#531](https://github.com/nuxt-modules/storybook/pull/531)) | ||
|
||
### 📖 Documentation | ||
|
||
- Use new `nuxi module add` command in installation ([#514](https://github.com/nuxt-modules/storybook/pull/514)) | ||
|
||
### 🏡 Chore | ||
|
||
- Fix Storybook version of comment ([#513](https://github.com/nuxt-modules/storybook/pull/513)) | ||
- Do not change nuxt devtools config ([#517](https://github.com/nuxt-modules/storybook/pull/517)) | ||
- Improve ci workflow ([#532](https://github.com/nuxt-modules/storybook/pull/532)) | ||
|
||
#### ⚠️ Breaking Changes | ||
|
||
- ⚠️ Improve handling of module options ([#518](https://github.com/nuxt-modules/storybook/pull/518)) | ||
|
||
### ❤️ Contributors | ||
|
||
- Tobias Diez <[email protected]> | ||
- Julien Huang ([@huang-julien](http://github.com/huang-julien)) | ||
- Damian Głowala ([@DamianGlowala](http://github.com/DamianGlowala)) | ||
- Gangan ([@shinGangan](http://github.com/shinGangan)) | ||
- Daniel Roe ([@danielroe](http://github.com/danielroe)) | ||
|
||
## v7.0.2 | ||
|
||
[compare changes](https://github.com/nuxt-modules/storybook/compare/v7.0.1...v7.0.2) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,96 +1,96 @@ | ||
{ | ||
"name": "@nuxtjs/storybook", | ||
"version": "7.0.2", | ||
"description": "Storybook module for Nuxt", | ||
"license": "MIT", | ||
"repository": "nuxt-modules/storybook", | ||
"author": { | ||
"name": "ChakAs3", | ||
"email": "[email protected]" | ||
}, | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"types": "./dist/types.d.ts", | ||
"import": "./dist/module.mjs", | ||
"require": "./dist/module.cjs" | ||
} | ||
}, | ||
"main": "./dist/module.cjs", | ||
"types": "./dist/types.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"dev": "./scripts/playground.sh", | ||
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground", | ||
"dev:build": "nuxi build playground", | ||
"build": "nuxt-module-build build", | ||
"lint": "eslint .", | ||
"prepack": "pnpm build", | ||
"release": "pnpm changelogen --release --push && pnpm publish", | ||
"prepare": "nuxi prepare playground", | ||
"build:docs": "(cd docs && nuxi build)", | ||
"test": "./scripts/test.sh", | ||
"test:coverage": "vitest --coverage" | ||
}, | ||
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
"@iconify-json/carbon": "^1.1.27", | ||
"@nuxt/content": "^2.10.0", | ||
"@nuxt/devtools": "^1.0.8", | ||
"@nuxt/module-builder": "^0.5.5", | ||
"@nuxt/schema": "^3.9.1", | ||
"@nuxt/test-utils": "^3.9.0", | ||
"@vitest/coverage-v8": "^1.5.0", | ||
"changelogen": "^0.5.5", | ||
"eslint": "^9.0.0", | ||
"jsdom": "^24.0.0", | ||
"nuxt": "3.11.2", | ||
"release-it": "17.2.0", | ||
"typescript": "^5.3.3", | ||
"unbuild": "^2.0.0", | ||
"vitest": "^1.2.0" | ||
}, | ||
"dependencies": { | ||
"@nuxt/devtools-kit": "^1.0.8", | ||
"@nuxt/kit": "3.11.2", | ||
"@storybook-vue/nuxt": "^0.2.6", | ||
"chalk": "^5.0.0", | ||
"defu": "^6.1.4", | ||
"get-port-please": "^3.1.2", | ||
"storybook": "^8.0.6" | ||
"name": "@nuxtjs/storybook", | ||
"version": "8.0.0", | ||
"description": "Storybook module for Nuxt", | ||
"license": "MIT", | ||
"repository": "nuxt-modules/storybook", | ||
"author": { | ||
"name": "ChakAs3", | ||
"email": "[email protected]" | ||
}, | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"types": "./dist/types.d.ts", | ||
"import": "./dist/module.mjs", | ||
"require": "./dist/module.cjs" | ||
} | ||
}, | ||
"main": "./dist/module.cjs", | ||
"types": "./dist/types.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"dev": "./scripts/playground.sh", | ||
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground", | ||
"dev:build": "nuxi build playground", | ||
"build": "nuxt-module-build build", | ||
"lint": "eslint .", | ||
"prepack": "pnpm build", | ||
"release": "pnpm changelogen --release --push && pnpm publish", | ||
"prepare": "nuxi prepare playground", | ||
"build:docs": "(cd docs && nuxi build)", | ||
"test": "./scripts/test.sh", | ||
"test:coverage": "vitest --coverage" | ||
}, | ||
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
"@iconify-json/carbon": "^1.1.27", | ||
"@nuxt/content": "^2.10.0", | ||
"@nuxt/devtools": "^1.0.8", | ||
"@nuxt/module-builder": "^0.5.5", | ||
"@nuxt/schema": "^3.9.1", | ||
"@nuxt/test-utils": "^3.9.0", | ||
"@vitest/coverage-v8": "^1.5.0", | ||
"changelogen": "^0.5.5", | ||
"eslint": "^9.0.0", | ||
"jsdom": "^24.0.0", | ||
"nuxt": "3.11.2", | ||
"release-it": "17.2.0", | ||
"typescript": "^5.3.3", | ||
"unbuild": "^2.0.0", | ||
"vitest": "^1.2.0" | ||
}, | ||
"dependencies": { | ||
"@nuxt/devtools-kit": "^1.0.8", | ||
"@nuxt/kit": "3.11.2", | ||
"@storybook-vue/nuxt": "^0.2.6", | ||
"chalk": "^5.0.0", | ||
"defu": "^6.1.4", | ||
"get-port-please": "^3.1.2", | ||
"storybook": "^8.0.6" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
"nuxt": "^3.11.1", | ||
"@nuxt/kit": "^3.11.1", | ||
"typescript": "^5.2.2", | ||
"chalk": "^4.1.2" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
"peerDependencyRules": { | ||
"allowedVersions": { | ||
"vue": "^3.2.45" | ||
}, | ||
"ignoreMissing": [ | ||
"webpack", | ||
"vue" | ||
] | ||
} | ||
}, | ||
"release-it": { | ||
"git": { | ||
"commitMessage": "chore(release): release v${version}" | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
"nuxt": "^3.11.1", | ||
"@nuxt/kit": "^3.11.1", | ||
"typescript": "^5.2.2", | ||
"chalk": "^4.1.2" | ||
}, | ||
"peerDependencyRules": { | ||
"allowedVersions": { | ||
"vue": "^3.2.45" | ||
}, | ||
"ignoreMissing": [ | ||
"webpack", | ||
"vue" | ||
] | ||
} | ||
"github": { | ||
"release": true, | ||
"releaseName": "v${version}" | ||
}, | ||
"release-it": { | ||
"git": { | ||
"commitMessage": "chore(release): release v${version}" | ||
}, | ||
"github": { | ||
"release": true, | ||
"releaseName": "v${version}" | ||
}, | ||
"hooks": { | ||
"after:bump": "npx changelogen@latest --no-commit --no-tag --output --r $(node -p \"require('./package.json').version\")" | ||
} | ||
"hooks": { | ||
"after:bump": "npx changelogen@latest --no-commit --no-tag --output --r $(node -p \"require('./package.json').version\")" | ||
} | ||
} | ||
} | ||
} |