-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "piral-cli-vite5-packages",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}' --project tsconfig.json",
"prettify": "prettier --config prettier.config.js --write \"src/**/*.{ts,tsx}\"",
"test": "jest --forceExit --passWithNoTests",
"prepublish": "yarn build",
"release": "lerna publish",
"ci:version": "node tools/changelog-version.js",
"ci:version-update": "yarn ci:version --update && git add CHANGELOG.md && git commit -m UpdateReleaseDate",
"ci:canary": "lerna publish $(yarn --silent ci:version)-alpha.$BUILD_BUILDID --exact --yes --force-publish --no-git-tag-version --no-push --dist-tag canary && git checkout -- .",
"ci:prerelease": "lerna publish $(yarn --silent ci:version)-beta.$BUILD_BUILDID --exact --yes --force-publish --no-git-tag-version --no-push --dist-tag next && git checkout -- .",
"ci:release": "lerna publish $(yarn --silent ci:version) --yes --force-publish --message '[skip ci] publish %s'"
},
"devDependencies": {
"@types/node": "^22",
"@types/yargs": "^17",
"jest": "^29",
"jest-cli": "^29",
"lerna": "^8",
"prettier": "^3",
"ts-jest": "^29",
"tslint": "^6",
"tslint-config-prettier": "^1",
"tslint-plugin-prettier": "^2",
"typescript": "^5"
}
}