-
Notifications
You must be signed in to change notification settings - Fork 145
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 #474 from maiieul/pnpm-link
refactor(package.json & contributing.md): add pnpm link.dist script
- Loading branch information
Showing
2 changed files
with
33 additions
and
7 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 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 |
---|---|---|
|
@@ -8,17 +8,18 @@ | |
"private": false, | ||
"type": "module", | ||
"scripts": { | ||
"build:headless": "nx build headless", | ||
"commit": "git-cz", | ||
"format:fix": "pretty-quick --staged", | ||
"prepare": "husky install", | ||
"build:headless": "nx build headless", | ||
"link.dist": "cd packages/kit-headless/dist && pnpm link --global", | ||
"lint": "nx affected:lint", | ||
"test:headless": "nx component-test headless", | ||
"test:headless:ci": "nx component-test-ci headless", | ||
"local:npm": "nx local-registry", | ||
"prepare": "husky install", | ||
"story:build:headless": "nx build-storybook headless", | ||
"story:headless": "nx storybook headless", | ||
"website": "nx serve website", | ||
"local:npm": "nx local-registry" | ||
"test:headless": "nx component-test headless", | ||
"test:headless:ci": "nx component-test-ci headless", | ||
"website": "nx serve website" | ||
}, | ||
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
|