@comet/upgrade 1.3.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +6 -8
package/README.md CHANGED
@@ -19,7 +19,7 @@ npx @comet/upgrade v4
19
19
  1. Start the development process:
20
20
 
21
21
  ```sh
22
- yarn start
22
+ npm start
23
23
  ```
24
24
 
25
25
  2. Add a new script for the version you want to upgrade to, for instance, `src/v4/change-something.ts`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comet/upgrade",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "Upgrade scripts for Comet DXP",
5
5
  "homepage": "https://github.com/vivid-planet/comet-upgrade#readme",
6
6
  "bugs": {
@@ -19,13 +19,13 @@
19
19
  "lib/**/*.js"
20
20
  ],
21
21
  "scripts": {
22
- "build": "yarn clean && tsc",
22
+ "build": "npm run clean && tsc",
23
23
  "clean": "rimraf lib/",
24
24
  "lint": "run-p lint:eslint lint:tsc",
25
25
  "lint:eslint": "eslint --max-warnings 0 src/",
26
26
  "lint:tsc": "tsc --noEmit",
27
27
  "prepare": "husky install",
28
- "start": "yarn clean && tsc --watch"
28
+ "start": "npm run clean && tsc --watch"
29
29
  },
30
30
  "dependencies": {
31
31
  "eslint": "^8.56.0",
@@ -40,14 +40,12 @@
40
40
  "@types/semver": "^7.3.13",
41
41
  "husky": "^8.0.2",
42
42
  "lint-staged": "^13.1.0",
43
+ "npm-run-all": "^4.1.5",
43
44
  "rimraf": "^3.0.2",
44
- "typescript": "^4.9.4",
45
- "yarn-run-all": "^3.1.1"
45
+ "typescript": "^4.9.4"
46
46
  },
47
- "packageManager": "yarn@3.3.0",
48
47
  "engines": {
49
- "node": "20",
50
- "yarn": "3"
48
+ "node": "20"
51
49
  },
52
50
  "publishConfig": {
53
51
  "access": "public",