-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(doc): define packageManager in package.json
- Loading branch information
Franck
committed
May 8, 2023
1 parent
b0f76e8
commit 2093c6b
Showing
2 changed files
with
22 additions
and
22 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,2 +1 @@ | ||
auto-install-peers=true | ||
strict-peer-dependencies=false |
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,23 +1,24 @@ | ||
{ | ||
"name": "wl-untitled", | ||
"version": "0.0.0", | ||
"description": "", | ||
"keywords": [], | ||
"author": "", | ||
"private": true, | ||
"license": "Apache-2.0", | ||
"scripts": { | ||
"doc:start": "pnpm --filter=docs dev", | ||
"doc:storybook": "pnpm --filter=docs storybook", | ||
"doc:build": "pnpm --filter=docs build", | ||
"lint": "pnpm run /^lint:.*/", | ||
"lint:eslint": "eslint . --ext .js,.jsx,.ts,.tsx --cache --cache-location node_modules/.cache/eslint", | ||
"lint:types": "pnpm -r lint:types", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"dependencies": { | ||
"@netlify/plugin-nextjs": "^4.36.0", | ||
"@workleap/eslint-plugin": "^1.0.0", | ||
"@workleap/typescript-configs": "^1.0.0" | ||
} | ||
"name": "wl-untitled", | ||
"version": "0.0.0", | ||
"description": "", | ||
"keywords": [], | ||
"author": "", | ||
"private": true, | ||
"license": "Apache-2.0", | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"doc:start": "pnpm --filter=docs dev", | ||
"doc:storybook": "pnpm --filter=docs storybook", | ||
"doc:build": "pnpm --filter=docs build", | ||
"lint": "pnpm run /^lint:.*/", | ||
"lint:eslint": "eslint . --ext .js,.jsx,.ts,.tsx --cache --cache-location node_modules/.cache/eslint", | ||
"lint:types": "pnpm -r lint:types", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"dependencies": { | ||
"@netlify/plugin-nextjs": "^4.36.0", | ||
"@workleap/eslint-plugin": "^1.0.0", | ||
"@workleap/typescript-configs": "^1.0.0" | ||
} | ||
} |