From 67ff54e7b2e08a7d22306bc8ff67bf03f9feefb2 Mon Sep 17 00:00:00 2001 From: chakAs3 Date: Mon, 15 Apr 2024 18:21:01 +0400 Subject: [PATCH] chore(release): v8.0.0 --- CHANGELOG.md | 37 +++++++++++ package.json | 182 +++++++++++++++++++++++++-------------------------- 2 files changed, 128 insertions(+), 91 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c54f2f42..1a6beffe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 +- 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) diff --git a/package.json b/package.json index 5a65fd47..39871320 100755 --- a/package.json +++ b/package.json @@ -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": "javachakir@gmail.com" - }, - "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": "pnpm@8.15.7", - "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": "javachakir@gmail.com" + }, + "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": "pnpm@8.15.7", + "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\")" } -} + } +} \ No newline at end of file