@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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +20 -20
package/CHANGELOG.md ADDED
@@ -0,0 +1,12 @@
1
+ # @pioneer-platform/pioneer-types
2
+
3
+ ## 8.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Release: minor version bump for all packages
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @pioneer-platform/pioneer-types@8.4.0
package/package.json CHANGED
@@ -1,32 +1,32 @@
1
1
  {
2
2
  "name": "@pioneer-platform/pioneer-types",
3
- "version": "8.3.2",
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": "npm i",
8
- "npm-update": "npm update",
9
- "test": "npm run build && node __tests__/test-module.js",
10
- "test-ts": "rm -R lib && npm run build && ts-node __tests__/test-module-ts.ts",
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": "npm run build && onchange 'src/**/*.ts' -- npm run build",
15
- "prepublish": "npm run build",
16
- "refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
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
- "dependencies": {
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
+ }