-
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.
- Loading branch information
1 parent
f3a37c6
commit 2882359
Showing
6 changed files
with
210 additions
and
2,894 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -16,7 +16,6 @@ | |
}, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"prepare": "husky install", | ||
"start": "cd storybook && pnpm run dev", | ||
"clean": "pnpm clean:build && pnpm clean:node", | ||
"clean:build": "pnpm -r exec del-cli dist lib tsconfig.tsbuildinfo", | ||
|
@@ -29,7 +28,7 @@ | |
"lint:report": "eslint --output-file eslint-report.log.json --format json packages/*/src", | ||
"test:pack": "pnpm -r pack --dry-run", | ||
"test:publish": "pnpm publish -r --dry-run --no-git-checks --force", | ||
"changeset:publish": "changeset tag && lerna publish from-package --yes --no-verify-access" | ||
"changeset:publish": "pnpm changeset tag && pnpm publish -r" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
|
@@ -38,7 +37,6 @@ | |
"@changesets/changelog-github": "^0.4.8", | ||
"@changesets/cli": "^2.26.2", | ||
"@types/react": "^18.0.28", | ||
"lerna": "^6.6.0", | ||
"prettier": "^3.0.2" | ||
}, | ||
"devDependencies": { | ||
|
@@ -48,17 +46,9 @@ | |
"del-cli": "^5.0.0", | ||
"eslint": "^8.36.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"husky": "^8.0.3", | ||
"lerna": "^6.6.0", | ||
"lint-staged": "^15.0.1", | ||
"typescript": "^5.2.2" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS", | ||
"pre-commit": "lint-staged" | ||
} | ||
}, | ||
"lint-staged": { | ||
"./packages/*/src": [ | ||
"eslint --quiet --fix" | ||
|
Oops, something went wrong.