generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #182 from storybookjs/norbert/fix-client-logger
Fix dependency on `@storybook/node-logger` and `@storybook/client-logger`
- Loading branch information
Showing
4 changed files
with
1,265 additions
and
1,367 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 |
---|---|---|
|
@@ -12,9 +12,6 @@ | |
}, | ||
"license": "MIT", | ||
"type": "module", | ||
"main": "./dist/index.js", | ||
"packageManager": "[email protected]", | ||
"types": "./dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
|
@@ -26,25 +23,27 @@ | |
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"dist/**/*", | ||
"README.md", | ||
"*.js", | ||
"*.d.ts" | ||
], | ||
"scripts": { | ||
"clean": "rimraf ./dist", | ||
"build": "svelte-package --input ./src --types", | ||
"prepublish": "pnpm run clean && pnpm run build", | ||
"test": "vitest run", | ||
"build-storybook": "storybook build", | ||
"check": "svelte-check", | ||
"chromatic": "chromatic --exit-zero-on-changes", | ||
"clean": "rimraf ./dist", | ||
"coverage": "vitest run --coverage", | ||
"check": "svelte-check", | ||
"lint": "eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.json,.html,.ts,.tsx,.mjs --report-unused-disable-directives", | ||
"storybook": "storybook dev --port 6006", | ||
"prepublish": "pnpm run clean && pnpm run build", | ||
"release": "pnpm run build && auto shipit", | ||
"start": "concurrently \"pnpm run storybook --quiet\" \"pnpm run build --watch\"", | ||
"build-storybook": "storybook build", | ||
"release": "pnpm run build && auto shipit" | ||
"storybook": "storybook dev --port 6006", | ||
"test": "vitest run" | ||
}, | ||
"dependencies": { | ||
"@babel/runtime": "^7.22.6", | ||
|
@@ -61,7 +60,6 @@ | |
"@storybook/components": "^8.0.0-rc.2", | ||
"@storybook/csf": "^0.1.1", | ||
"@storybook/eslint-config-storybook": "^3.1.2", | ||
"@storybook/node-logger": "^8.0.0-rc.2", | ||
"@storybook/preview-api": "^8.0.0-rc.2", | ||
"@storybook/svelte": "^8.0.0-rc.2", | ||
"@storybook/svelte-vite": "^8.0.0-rc.2", | ||
|
@@ -74,10 +72,10 @@ | |
"@tsconfig/svelte": "^5.0.0", | ||
"@types/estree": "^1.0.1", | ||
"auto": "^11.1.1", | ||
"chromatic": "^6.19.9", | ||
"chromatic": "^11.3.5", | ||
"concurrently": "^8.2.0", | ||
"eslint": "^7.17.0", | ||
"eslint-plugin-storybook": "^0.6.12", | ||
"eslint-plugin-storybook": "^0.8.0", | ||
"jsdom": "^22.1.0", | ||
"prettier": "^3.0.0", | ||
"react": "^18.2.0", | ||
|
@@ -91,7 +89,7 @@ | |
"svelte-package": "^0.1.0", | ||
"typescript": "^5.1.6", | ||
"vite": "^4.4.3", | ||
"vitest": "^0.33.0" | ||
"vitest": "^1.6.0" | ||
}, | ||
"peerDependencies": { | ||
"@storybook/svelte": "^7.0.0 || ^8.0.0 || ^8.0.0-beta.0", | ||
|
@@ -111,20 +109,21 @@ | |
"optional": true | ||
} | ||
}, | ||
"packageManager": "[email protected]", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"auto": { | ||
"plugins": [ | ||
"npm", | ||
"released" | ||
] | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"storybook": { | ||
"displayName": "Svelte CSF", | ||
"supportedFrameworks": [ | ||
"svelte" | ||
], | ||
"icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png" | ||
} | ||
} | ||
} |
Oops, something went wrong.