-
-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix linter and update lock file (#686)
<!--- ☝️ PR title should follow conventional commits (https://conventionalcommits.org) --> ### 🔗 Linked issue <!-- If it resolves an open issue, please link the issue here. For example "Resolves #123" --> ### ❓ Type of change <!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply. --> - [ ] 📖 Documentation (updates to the documentation or readme) - [ ] 🐞 Bug fix (a non-breaking change that fixes an issue) - [ ] 👌 Enhancement (improving an existing functionality) - [ ] ✨ New feature (a non-breaking change that adds functionality) - [ ] 🧹 Chore (updates to the build process or auxiliary tools and libraries) - [ ]⚠️ Breaking change (fix or feature that would cause existing functionality to change) ### 📚 Description <!-- Describe your changes in detail --> <!-- Why is this change required? What problem does it solve? --> Fixes the linter, and revert back to lockfile vs 9.
- Loading branch information
1 parent
f08ce97
commit a6d95d6
Showing
5 changed files
with
12,764 additions
and
9,591 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
This file was deleted.
Oops, something went wrong.
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,105 +1,105 @@ | ||
{ | ||
"name": "@storybook-vue/nuxt", | ||
"version": "0.2.10", | ||
"description": "Storybook addon for Nuxt and Vite", | ||
"license": "MIT", | ||
"homepage": "https://storybook.nuxtjs.org", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/nuxt-modules/storybook.git", | ||
"directory": "packages/storybook-addon" | ||
"name": "@storybook-vue/nuxt", | ||
"version": "0.2.10", | ||
"description": "Storybook addon for Nuxt and Vite", | ||
"license": "MIT", | ||
"homepage": "https://storybook.nuxtjs.org", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/nuxt-modules/storybook.git", | ||
"directory": "packages/storybook-addon" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/nuxt-modules/storybook/issues" | ||
}, | ||
"keywords": [ | ||
"storybook", | ||
"nuxt", | ||
"vite", | ||
"vue3" | ||
], | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"node": "./dist/index.cjs", | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/nuxt-modules/storybook/issues" | ||
"./preset": { | ||
"types": "./dist/preset.d.ts", | ||
"require": "./dist/preset.cjs" | ||
}, | ||
"keywords": [ | ||
"storybook", | ||
"nuxt", | ||
"vite", | ||
"vue3" | ||
], | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"node": "./dist/index.cjs", | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
}, | ||
"./preset": { | ||
"types": "./dist/preset.d.ts", | ||
"require": "./dist/preset.cjs" | ||
}, | ||
"./preview": { | ||
"types": "./dist/preview.d.ts", | ||
"import": "./dist/preview.mjs", | ||
"default": "./preview.js" | ||
}, | ||
"./package.json": "./package.json" | ||
"./preview": { | ||
"types": "./dist/preview.d.ts", | ||
"import": "./dist/preview.mjs", | ||
"default": "./preview.js" | ||
}, | ||
"main": "dist/index.cjs", | ||
"module": "dist/index.mjs", | ||
"types": "dist/index.d.ts", | ||
"files": [ | ||
"dist/**/*", | ||
"template/**/*", | ||
"README.md", | ||
"*.js", | ||
"*.mjs", | ||
"*.cjs", | ||
"*.d.ts" | ||
"./package.json": "./package.json" | ||
}, | ||
"main": "dist/index.cjs", | ||
"module": "dist/index.mjs", | ||
"types": "dist/index.d.ts", | ||
"files": [ | ||
"dist/**/*", | ||
"template/**/*", | ||
"README.md", | ||
"*.js", | ||
"*.mjs", | ||
"*.cjs", | ||
"*.d.ts" | ||
], | ||
"engines": { | ||
"node": ">=18.0.0" | ||
}, | ||
"scripts": { | ||
"build": "unbuild", | ||
"dev:prepare": "unbuild --stub", | ||
"test": "vitest run", | ||
"dev": "unbuild", | ||
"prepack": "unbuild", | ||
"release": "pnpm changelogen --release --push && pnpm publish" | ||
}, | ||
"peerDependencies": { | ||
"nuxt": "^3.6 || ^3.7 || ^3.8", | ||
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0", | ||
"vue": "^3.0.0" | ||
}, | ||
"dependencies": { | ||
"@nuxt/kit": "^3.12.2", | ||
"@nuxt/schema": "^3.12.2", | ||
"@nuxt/vite-builder": "^3.12.2", | ||
"@rollup/plugin-replace": "^5.0.7", | ||
"@storybook/builder-vite": "^8.1.11", | ||
"@storybook/vue3": "^8.1.11", | ||
"@storybook/vue3-vite": "^8.1.11", | ||
"json-stable-stringify": "^1.1.1", | ||
"nuxt": "^3.12.2", | ||
"ofetch": "^1.3.4", | ||
"pathe": "^1.1.2", | ||
"unctx": "^2.3.1", | ||
"vue": "^3.4.31", | ||
"vue-router": "^4.3.0" | ||
}, | ||
"devDependencies": { | ||
"@storybook/types": "^8.1.11", | ||
"@types/json-stable-stringify": "^1.0.36", | ||
"@vitejs/plugin-vue": "^5.0.4", | ||
"@vitejs/plugin-vue-jsx": "^4.0.0", | ||
"changelogen": "^0.5.5", | ||
"typescript": "^5.4.3", | ||
"unbuild": "^2.0.0", | ||
"vite": "^5.2.2" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"bundler": { | ||
"entries": [ | ||
"./src/index.ts", | ||
"./src/preview.ts", | ||
"./src/preset.ts" | ||
], | ||
"engines": { | ||
"node": ">=18.0.0" | ||
}, | ||
"scripts": { | ||
"build": "unbuild", | ||
"dev:prepare": "unbuild --stub", | ||
"test": "vitest run", | ||
"dev": "unbuild", | ||
"prepack": "unbuild", | ||
"release": "pnpm changelogen --release --push && pnpm publish" | ||
}, | ||
"peerDependencies": { | ||
"nuxt": "^3.6 || ^3.7 || ^3.8", | ||
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0", | ||
"vue": "^3.0.0" | ||
}, | ||
"dependencies": { | ||
"@nuxt/kit": "^3.12.2", | ||
"@nuxt/schema": "^3.12.2", | ||
"@nuxt/vite-builder": "^3.12.2", | ||
"@rollup/plugin-replace": "^5.0.7", | ||
"@storybook/builder-vite": "^8.1.11", | ||
"@storybook/vue3": "^8.1.11", | ||
"@storybook/vue3-vite": "^8.1.11", | ||
"json-stable-stringify": "^1.1.1", | ||
"nuxt": "^3.12.2", | ||
"ofetch": "^1.3.4", | ||
"pathe": "^1.1.2", | ||
"unctx": "^2.3.1", | ||
"vue": "^3.4.31", | ||
"vue-router": "^4.3.0" | ||
}, | ||
"devDependencies": { | ||
"@storybook/types": "^8.1.11", | ||
"@types/json-stable-stringify": "^1.0.36", | ||
"@vitejs/plugin-vue": "^5.0.4", | ||
"@vitejs/plugin-vue-jsx": "^4.0.0", | ||
"changelogen": "^0.5.5", | ||
"typescript": "^5.4.3", | ||
"unbuild": "^2.0.0", | ||
"vite": "^5.2.2" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"bundler": { | ||
"entries": [ | ||
"./src/index.ts", | ||
"./src/preview.ts", | ||
"./src/preset.ts" | ||
], | ||
"platform": "node" | ||
} | ||
} | ||
"platform": "node" | ||
} | ||
} |
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,24 +1,24 @@ | ||
{ | ||
"name": "nuxt-storybook-playground", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"build": "nuxt build", | ||
"dev": "nuxt dev", | ||
"generate": "nuxt generate", | ||
"preview": "nuxt preview", | ||
"prepare": "nuxt prepare", | ||
"storybook": "storybook dev --port 6006", | ||
"build-storybook": "storybook build" | ||
}, | ||
"devDependencies": { | ||
"@nuxt/devtools": "^1.1.5", | ||
"@nuxtjs/storybook": "workspace:*", | ||
"@storybook/addon-essentials": "^8.1.11", | ||
"@storybook/addon-interactions": "^8.1.11", | ||
"@storybook/addon-links": "^8.1.11", | ||
"nuxt": "^3.12.2", | ||
"storybook": "^8.1.11", | ||
"vite-plugin-inspect": "^0.8.4" | ||
} | ||
} | ||
"name": "nuxt-storybook-playground", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"build": "nuxt build", | ||
"dev": "nuxt dev", | ||
"generate": "nuxt generate", | ||
"preview": "nuxt preview", | ||
"prepare": "nuxt prepare", | ||
"storybook": "storybook dev --port 6006", | ||
"build-storybook": "storybook build" | ||
}, | ||
"devDependencies": { | ||
"@nuxt/devtools": "^1.1.5", | ||
"@nuxtjs/storybook": "workspace:*", | ||
"@storybook/addon-essentials": "^8.1.11", | ||
"@storybook/addon-interactions": "^8.1.11", | ||
"@storybook/addon-links": "^8.1.11", | ||
"nuxt": "^3.12.2", | ||
"storybook": "^8.1.11", | ||
"vite-plugin-inspect": "^0.8.4" | ||
} | ||
} |
Oops, something went wrong.