-
Notifications
You must be signed in to change notification settings - Fork 3
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 #46 from storybookjs/pnpm
Migrate to pnpm, Upgrade dependencies
- Loading branch information
Showing
14 changed files
with
5,146 additions
and
6,846 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,14 +1,18 @@ | ||
name: 'Prepare Dependencies' | ||
description: 'Prepares all Node and Yarn dependencies' | ||
description: 'Prepares all Node and pnpm dependencies' | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- uses: pnpm/action-setup@v2 | ||
name: Install pnpm | ||
with: | ||
version: 8 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '14' | ||
cache: 'yarn' | ||
cache: 'pnpm' | ||
|
||
- name: Install dependencies | ||
shell: bash | ||
run: yarn install --frozen-lockfile | ||
run: pnpm install |
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 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 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 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
pnpm-lock.yaml |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,55 +2,54 @@ | |
"name": "create-svelte-with-args", | ||
"version": "5.0.0", | ||
"description": "A small CLI wrapper around the create-svelte package that enables you to replace the interactive prompts with CLI arguments.", | ||
"bin": "dist/bin.js", | ||
"repository": "[email protected]:storybookjs/create-svelte-with-args.git", | ||
"author": "Jeppe Reinhold <[email protected]>", | ||
"keywords": [ | ||
"svelte", | ||
"create-svelte", | ||
"cli" | ||
], | ||
"repository": "[email protected]:storybookjs/create-svelte-with-args.git", | ||
"license": "MIT", | ||
"author": "Jeppe Reinhold <[email protected]>", | ||
"type": "module", | ||
"bin": "dist/bin.js", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "tsup", | ||
"prestart": "yarn build", | ||
"start": "node ./dist/bin.js", | ||
"start:default": "yarn start --name=default --template=default --types=checkjs --no-prettier --no-eslint --no-playwright --no-vitest --no-svelte5", | ||
"start:mini": "yarn start --name=mini --template=skeleton --types=null --no-prettier --no-eslint --no-playwright --no-vitest --no-svelte5", | ||
"start:maxi": "yarn start --name=maxi --template=default --types=typescript --prettier --eslint --playwright --vitest --no-svelte5", | ||
"start:svelte5": "yarn start --name=svelte5 --template=default --types=typescript --prettier --eslint --playwright --vitest --svelte5", | ||
"start:dry": "yarn start:default --dry", | ||
"start:all": "yarn start:default && yarn start:mini && yarn start:maxi && yarn start:svelte5 && yarn start:dry", | ||
"check-all": "npm-run-all --aggregate-output --print-label --parallel format:check type-check start:**", | ||
"format": "prettier --write .", | ||
"format:check": "prettier --check .", | ||
"type-check": "tsc --noEmit", | ||
"check-all": "yarn format:check && yarn type-check && yarn build && yarn start:all", | ||
"release": "auto shipit" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">=10.13.0", | ||
"yarn": ">=1.3.2" | ||
"release": "auto shipit", | ||
"start": "node ./dist/bin.js", | ||
"start-all": "npm-run-all --aggregate-output --print-label build --parallel start:**", | ||
"start:default": "pnpm start --name=default --template=default --types=checkjs --no-prettier --no-eslint --no-playwright --no-vitest --no-svelte5", | ||
"start:dry": "pnpm start:default --dry", | ||
"start:maxi": "pnpm start --name=maxi --template=default --types=typescript --prettier --eslint --playwright --vitest --no-svelte5", | ||
"start:mini": "pnpm start --name=mini --template=skeleton --types=null --no-prettier --no-eslint --no-playwright --no-vitest --no-svelte5", | ||
"start:svelte5": "pnpm start --name=svelte5 --template=default --types=typescript --prettier --eslint --playwright --vitest --svelte5", | ||
"type-check": "tsc --noEmit" | ||
}, | ||
"prettier": "@storybook/linter-config/prettier.config.js", | ||
"dependencies": { | ||
"create-svelte": "5.3.2", | ||
"yargs": "^17.5.1" | ||
"yargs": "^17.7.2" | ||
}, | ||
"devDependencies": { | ||
"@storybook/linter-config": "^3.1.2", | ||
"@tsconfig/node14": "^1.0.3", | ||
"@types/node": "^18.7.23", | ||
"@types/yargs": "^17.0.13", | ||
"auto": "^10.37.6", | ||
"prettier": "^2.7.1", | ||
"tsup": "^6.2.3", | ||
"typescript": "^4.8.4" | ||
"@tsconfig/node18": "^18.2.2", | ||
"@types/node": "^18.18.12", | ||
"@types/yargs": "^17.0.32", | ||
"auto": "^11.0.4", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^3.1.0", | ||
"tsup": "^8.0.1", | ||
"typescript": "^5.3.2" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">=18.0.0" | ||
}, | ||
"prettier": "@storybook/linter-config/prettier.config.js", | ||
"auto": { | ||
"plugins": [ | ||
"npm", | ||
|
Oops, something went wrong.