@feathersjs/schema 5.0.0-pre.27 → 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 +11 -0
  2. package/package.json +10 -9
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
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
+
6
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)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@feathersjs/schema",
3
3
  "description": "A common data schema definition format",
4
- "version": "5.0.0-pre.27",
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
  "mocha": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts",
47
48
  "test": "npm run compile && npm run mocha"
48
49
  },
@@ -53,23 +54,23 @@
53
54
  "access": "public"
54
55
  },
55
56
  "dependencies": {
56
- "@feathersjs/commons": "^5.0.0-pre.27",
57
- "@feathersjs/errors": "^5.0.0-pre.27",
58
- "@feathersjs/feathers": "^5.0.0-pre.27",
57
+ "@feathersjs/commons": "^5.0.0-pre.28",
58
+ "@feathersjs/errors": "^5.0.0-pre.28",
59
+ "@feathersjs/feathers": "^5.0.0-pre.28",
59
60
  "@feathersjs/hooks": "^0.7.5",
60
61
  "@types/json-schema": "^7.0.11",
61
62
  "ajv": "^8.11.0",
62
63
  "json-schema": "^0.4.0",
63
- "json-schema-to-ts": "^2.5.4"
64
+ "json-schema-to-ts": "^2.5.5"
64
65
  },
65
66
  "devDependencies": {
66
- "@feathersjs/memory": "^5.0.0-pre.27",
67
+ "@feathersjs/memory": "^5.0.0-pre.28",
67
68
  "@types/mocha": "^9.1.1",
68
- "@types/node": "^18.0.1",
69
+ "@types/node": "^18.6.3",
69
70
  "ajv-formats": "^2.1.1",
70
71
  "mocha": "^10.0.0",
71
72
  "shx": "^0.3.4",
72
73
  "typescript": "^4.7.4"
73
74
  },
74
- "gitHead": "6032742bce059781e7013fd662870df45bd72bb5"
75
+ "gitHead": "bf8e54fddc14d688ba8f505e72c9630a71656ff1"
75
76
  }