@feathersjs/memory 5.0.0-pre.26 → 5.0.0-pre.27

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 CHANGED
@@ -3,6 +3,14 @@
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.27](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.26...v5.0.0-pre.27) (2022-07-13)
7
+
8
+ **Note:** Version bump only for package @feathersjs/memory
9
+
10
+
11
+
12
+
13
+
6
14
  # [5.0.0-pre.26](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.25...v5.0.0-pre.26) (2022-06-22)
7
15
 
8
16
  **Note:** Version bump only for package @feathersjs/memory
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.26",
4
+ "version": "5.0.0-pre.27",
5
5
  "homepage": "https://github.com/feathersjs/feathers",
6
6
  "main": "lib/",
7
7
  "types": "lib/",
@@ -48,20 +48,20 @@
48
48
  "lib": "lib"
49
49
  },
50
50
  "dependencies": {
51
- "@feathersjs/adapter-commons": "^5.0.0-pre.26",
52
- "@feathersjs/commons": "^5.0.0-pre.26",
53
- "@feathersjs/errors": "^5.0.0-pre.26",
51
+ "@feathersjs/adapter-commons": "^5.0.0-pre.27",
52
+ "@feathersjs/commons": "^5.0.0-pre.27",
53
+ "@feathersjs/errors": "^5.0.0-pre.27",
54
54
  "sift": "^16.0.0"
55
55
  },
56
56
  "devDependencies": {
57
- "@feathersjs/adapter-tests": "^5.0.0-pre.26",
58
- "@feathersjs/feathers": "^5.0.0-pre.26",
57
+ "@feathersjs/adapter-tests": "^5.0.0-pre.27",
58
+ "@feathersjs/feathers": "^5.0.0-pre.27",
59
59
  "@types/mocha": "^9.1.1",
60
- "@types/node": "^17.0.40",
60
+ "@types/node": "^18.0.1",
61
61
  "mocha": "^10.0.0",
62
62
  "shx": "^0.3.4",
63
- "ts-node": "^10.8.1",
64
- "typescript": "^4.7.3"
63
+ "ts-node": "^10.8.2",
64
+ "typescript": "^4.7.4"
65
65
  },
66
- "gitHead": "0e7553ded9b24016d36021aaedcc2cdb19ab0157"
66
+ "gitHead": "6032742bce059781e7013fd662870df45bd72bb5"
67
67
  }
@@ -1,12 +0,0 @@
1
- module.exports = {
2
- async prompt ({ config, args }) {
3
- const { helpers } = config;
4
- const result = await helpers.generate({
5
- generator: 'service',
6
- action: 'base',
7
- args
8
- });
9
-
10
- return result.args;
11
- }
12
- }
@@ -1,8 +0,0 @@
1
- ---
2
- to: "<%= h.lib %>/services/<%= path %>.js"
3
- inject: true
4
- after: "The <%= className %> service class"
5
- ---
6
-
7
- export class <%= className %> extends Service {
8
- }
@@ -1,6 +0,0 @@
1
- ---
2
- to: "<%= h.lib %>/services/<%= path %>.js"
3
- inject: true
4
- prepend: true
5
- ---
6
- import { Service } from '@feathersjs/memory';