@pioneer-platform/pioneer-types 8.3.2 → 8.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.
- package/CHANGELOG.md +12 -0
- package/package.json +20 -20
package/CHANGELOG.md
ADDED
package/package.json
CHANGED
@@ -1,32 +1,32 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pioneer-platform/pioneer-types",
|
3
|
-
"version": "8.
|
3
|
+
"version": "8.4.0",
|
4
4
|
"main": "./lib/index.js",
|
5
5
|
"types": "./lib/index.d.ts",
|
6
|
+
"dependencies": {
|
7
|
+
"@pioneer-platform/pioneer-types": "^8.4.0"
|
8
|
+
},
|
9
|
+
"devDependencies": {
|
10
|
+
"@types/jest": "^25.2.3",
|
11
|
+
"@types/node": "^18.16.0",
|
12
|
+
"@types/source-map-support": "^0.5.3",
|
13
|
+
"typescript": "^5.0.4"
|
14
|
+
},
|
15
|
+
"gitHead": "aeae28273014ab69b42f22abec159c6693a56c40",
|
6
16
|
"scripts": {
|
7
|
-
"npm": "
|
8
|
-
"npm-update": "
|
9
|
-
"test": "
|
10
|
-
"test-ts": "rm -R lib &&
|
17
|
+
"npm": "pnpm i",
|
18
|
+
"npm-update": "pnpm update",
|
19
|
+
"test": "pnpm run build && node __tests__/test-module.js",
|
20
|
+
"test-ts": "rm -R lib && pnpm run build && ts-node __tests__/test-module-ts.ts",
|
11
21
|
"lint": "prettier --write '**/**/*.ts'",
|
12
22
|
"start": "nodemon --watch 'src/**/*.ts' --exec ts-node __tests__node",
|
13
23
|
"build": "tsc -p .",
|
14
|
-
"build:watch": "
|
15
|
-
"prepublish": "
|
16
|
-
"refresh": "rm -rf ./node_modules ./package-lock.json &&
|
24
|
+
"build:watch": "pnpm run build && onchange 'src/**/*.ts' -- pnpm run build",
|
25
|
+
"prepublish": "pnpm run build",
|
26
|
+
"refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install",
|
17
27
|
"test-jest": "jest --coverage",
|
18
28
|
"test:watch": "jest --coverage --watchAll",
|
19
29
|
"view:coverage": "serve coverage/lcov-report",
|
20
30
|
"clean": "rm -rf coverage src/**/*.js src/**/*.map lib node_modules"
|
21
|
-
}
|
22
|
-
|
23
|
-
"@pioneer-platform/pioneer-types": "^8.3.1"
|
24
|
-
},
|
25
|
-
"devDependencies": {
|
26
|
-
"@types/jest": "^25.2.3",
|
27
|
-
"@types/node": "^13.13.51",
|
28
|
-
"@types/source-map-support": "^0.5.3",
|
29
|
-
"typescript": "^5.0.2"
|
30
|
-
},
|
31
|
-
"gitHead": "aeae28273014ab69b42f22abec159c6693a56c40"
|
32
|
-
}
|
31
|
+
}
|
32
|
+
}
|