@feathersjs/configuration 5.0.0-pre.25 → 5.0.0-pre.28

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 +27 -0
  2. package/package.json +11 -10
package/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [5.0.0-pre.28](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.27...v5.0.0-pre.28) (2022-08-03)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **cli:** Improve generated application and client ([#2701](https://github.com/feathersjs/feathers/issues/2701)) ([bd55ffb](https://github.com/feathersjs/feathers/commit/bd55ffb812e89bf215f4515e7f137656ea888c3f))
12
+
13
+
14
+
15
+
16
+
17
+ # [5.0.0-pre.27](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.26...v5.0.0-pre.27) (2022-07-13)
18
+
19
+ **Note:** Version bump only for package @feathersjs/configuration
20
+
21
+
22
+
23
+
24
+
25
+ # [5.0.0-pre.26](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.25...v5.0.0-pre.26) (2022-06-22)
26
+
27
+ **Note:** Version bump only for package @feathersjs/configuration
28
+
29
+
30
+
31
+
32
+
6
33
  # [5.0.0-pre.25](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.24...v5.0.0-pre.25) (2022-06-22)
7
34
 
8
35
  **Note:** Version bump only for package @feathersjs/configuration
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@feathersjs/configuration",
3
3
  "description": "A small configuration module for your Feathers application.",
4
- "version": "5.0.0-pre.25",
4
+ "version": "5.0.0-pre.28",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "main": "lib/",
7
7
  "types": "lib/",
@@ -42,7 +42,8 @@
42
42
  ],
43
43
  "scripts": {
44
44
  "prepublish": "npm run compile",
45
- "compile": "shx rm -rf lib/ && tsc",
45
+ "pack": "npm pack --pack-destination ../cli/test",
46
+ "compile": "shx rm -rf lib/ && tsc && npm run pack",
46
47
  "test": "NODE_CONFIG_DIR=./test/config mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
47
48
  },
48
49
  "semistandard": {
@@ -57,19 +58,19 @@
57
58
  "access": "public"
58
59
  },
59
60
  "dependencies": {
60
- "@feathersjs/commons": "^5.0.0-pre.25",
61
- "@feathersjs/feathers": "^5.0.0-pre.25",
62
- "@feathersjs/schema": "^5.0.0-pre.25",
63
- "@types/config": "^0.0.41",
61
+ "@feathersjs/commons": "^5.0.0-pre.28",
62
+ "@feathersjs/feathers": "^5.0.0-pre.28",
63
+ "@feathersjs/schema": "^5.0.0-pre.28",
64
+ "@types/config": "^3.3.0",
64
65
  "config": "^3.3.7"
65
66
  },
66
67
  "devDependencies": {
67
68
  "@types/mocha": "^9.1.1",
68
- "@types/node": "^17.0.40",
69
+ "@types/node": "^18.6.3",
69
70
  "mocha": "^10.0.0",
70
71
  "shx": "^0.3.4",
71
- "ts-node": "^10.8.1",
72
- "typescript": "^4.7.3"
72
+ "ts-node": "^10.9.1",
73
+ "typescript": "^4.7.4"
73
74
  },
74
- "gitHead": "c0ab3b603920dff6e9c912b2767cf168094d45c8"
75
+ "gitHead": "bf8e54fddc14d688ba8f505e72c9630a71656ff1"
75
76
  }