@naturalcycles/backend-lib 3.4.0 → 3.5.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.
@@ -47,7 +47,8 @@ const DEFAULT_FILES = [
47
47
  'tsconfig.dist.json',
48
48
  '.gcloudignore',
49
49
  'app.yaml',
50
- 'patches', // to allow patch-package
50
+ 'patches',
51
+ 'resources',
51
52
  ];
52
53
  const defaultFilesDir = `${paths_cnst_1.srcDir}/deploy/files-default`;
53
54
  async function deployPrepare(opt = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/backend-lib",
3
- "version": "3.4.0",
3
+ "version": "3.5.0",
4
4
  "scripts": {
5
5
  "prepare": "husky install && patch-package",
6
6
  "serve": "APP_ENV=dev nodemon",
@@ -84,7 +84,7 @@
84
84
  "url": "https://github.com/NaturalCycles/backend-lib"
85
85
  },
86
86
  "engines": {
87
- "node": ">=14.15.0"
87
+ "node": ">=16.13.0"
88
88
  },
89
89
  "type": "commonjs",
90
90
  "description": "Standard library for making Express.js / AppEngine based backend services",
@@ -60,6 +60,7 @@ const DEFAULT_FILES = [
60
60
  '.gcloudignore',
61
61
  'app.yaml',
62
62
  'patches', // to allow patch-package
63
+ 'resources',
63
64
  ]
64
65
 
65
66
  const defaultFilesDir = `${srcDir}/deploy/files-default`