@naturalcycles/backend-lib 3.2.0 → 3.3.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,6 +47,7 @@ const DEFAULT_FILES = [
47
47
  'tsconfig.dist.json',
48
48
  '.gcloudignore',
49
49
  'app.yaml',
50
+ 'patches', // to allow patch-package
50
51
  ];
51
52
  const defaultFilesDir = `${paths_cnst_1.srcDir}/deploy/files-default`;
52
53
  async function deployPrepare(opt = {}) {
@@ -1,2 +1,2 @@
1
1
  import type { DeployInfo } from '../deploy';
2
- export declare const getDeployInfo: ((projectDir: string) => DeployInfo) & import("@naturalcycles/js-lib/dist/decorators/memoFn").MemoizedFunction;
2
+ export declare const getDeployInfo: ((projectDir: string) => DeployInfo) & import("@naturalcycles/js-lib").MemoizedFunction;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/backend-lib",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "scripts": {
5
5
  "prepare": "husky install && patch-package",
6
6
  "serve": "APP_ENV=dev nodemon",
@@ -59,6 +59,7 @@ const DEFAULT_FILES = [
59
59
  'tsconfig.dist.json',
60
60
  '.gcloudignore',
61
61
  'app.yaml',
62
+ 'patches', // to allow patch-package
62
63
  ]
63
64
 
64
65
  const defaultFilesDir = `${srcDir}/deploy/files-default`