forked from imbhargav5/rooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
old-scripts.json
39 lines (39 loc) · 1.47 KB
/
old-scripts.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
34
35
36
37
38
39
{
"scripts": {
"prerelease-version-bump": "GITHUB_SHA=$(git rev-parse HEAD | cut -c1-8);lerna version prerelease --force-publish=* --preid ${GITHUB_SHA}",
"ga-prerelease-version": "lerna version prerelease --force-publish=* --no-commit-hooks --no-push --yes",
"bump-canary": "yarn run new-canary-version prerelease",
"new-canary-version": "GITHUB_SHA=$(git rev-parse HEAD | cut -c1-8);lerna version --force-publish=* --preid canary",
"new-release-version": "lerna version --force-publish=*",
"new-dev-canary-version": "GITHUB_SHA=$(git rev-parse HEAD | cut -c1-8);lerna version --force-publish=* --preid dev",
"ga-npm-publish": "lerna publish from-git --force-publish=* --yes"
},
"shared": {
"name": "shared",
"version": "4.11.0",
"description": "Shared package with all utils",
"author": "Bhargav Ponnapalli <bhargavponnapalli.5@gmail.com> (https://github.com/imbhargav5)",
"homepage": "https://github.com/imbhargav5/rooks#readme",
"license": "MIT",
"main": "lib/index.js",
"private": true,
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": ["lib"],
"repository": {
"type": "git",
"url": "git+https://github.com/imbhargav5/rooks.git"
},
"scripts": {
"prebuild": "rimraf **/*.d.ts *.d.ts *.tsbuildinfo",
"build": "tsc",
"test": "jest",
"lint": "eslint */*.ts"
},
"bugs": {
"url": "https://github.com/imbhargav5/rooks/issues"
}
}
}