@feathersjs/memory 5.0.0-pre.34 → 5.0.0-pre.35

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 +6 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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.35](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.34...v5.0.0-pre.35) (2023-01-12)
7
+
8
+ ### Features
9
+
10
+ - **generators:** Move core code generators to shared generators package ([#2982](https://github.com/feathersjs/feathers/issues/2982)) ([0328d22](https://github.com/feathersjs/feathers/commit/0328d2292153870bc43958f73d2c6f288a8cec17))
11
+
6
12
  # [5.0.0-pre.34](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.33...v5.0.0-pre.34) (2022-12-14)
7
13
 
8
14
  ### Features
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@feathersjs/memory",
3
3
  "description": "An in memory service store",
4
- "version": "5.0.0-pre.34",
4
+ "version": "5.0.0-pre.35",
5
5
  "homepage": "https://github.com/feathersjs/feathers",
6
6
  "main": "lib/",
7
7
  "types": "lib/",
@@ -38,7 +38,7 @@
38
38
  ],
39
39
  "scripts": {
40
40
  "prepublish": "npm run compile",
41
- "pack": "npm pack --pack-destination ../cli/test/build",
41
+ "pack": "npm pack --pack-destination ../generators/test/build",
42
42
  "compile": "shx rm -rf lib/ && tsc && npm run pack",
43
43
  "test": "mocha --config ../../.mocharc.json --recursive test/**/*.test.ts"
44
44
  },
@@ -49,20 +49,20 @@
49
49
  "lib": "lib"
50
50
  },
51
51
  "dependencies": {
52
- "@feathersjs/adapter-commons": "^5.0.0-pre.34",
53
- "@feathersjs/commons": "^5.0.0-pre.34",
54
- "@feathersjs/errors": "^5.0.0-pre.34",
52
+ "@feathersjs/adapter-commons": "^5.0.0-pre.35",
53
+ "@feathersjs/commons": "^5.0.0-pre.35",
54
+ "@feathersjs/errors": "^5.0.0-pre.35",
55
55
  "sift": "^16.0.1"
56
56
  },
57
57
  "devDependencies": {
58
- "@feathersjs/adapter-tests": "^5.0.0-pre.34",
59
- "@feathersjs/feathers": "^5.0.0-pre.34",
58
+ "@feathersjs/adapter-tests": "^5.0.0-pre.35",
59
+ "@feathersjs/feathers": "^5.0.0-pre.35",
60
60
  "@types/mocha": "^10.0.1",
61
- "@types/node": "^18.11.10",
62
- "mocha": "^10.1.0",
61
+ "@types/node": "^18.11.18",
62
+ "mocha": "^10.2.0",
63
63
  "shx": "^0.3.4",
64
64
  "ts-node": "^10.9.1",
65
- "typescript": "^4.9.3"
65
+ "typescript": "^4.9.4"
66
66
  },
67
- "gitHead": "42cca600d00f0b3b9d89fa79be30fcd46bc50132"
67
+ "gitHead": "c641598d9a4de3ceda10f56cf2af288a4236b15e"
68
68
  }