@simondotm/nx-firebase 20.8.4 → 22.3.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simondotm/nx-firebase",
3
- "version": "20.8.4",
3
+ "version": "22.3.3",
4
4
  "description": "A Firebase plugin for Nx monorepo workspaces.",
5
5
  "author": "Simon Morris",
6
6
  "license": "MIT",
@@ -21,9 +21,9 @@
21
21
  "generators": "./generators.json",
22
22
  "executors": "./executors.json",
23
23
  "peerDependencies": {
24
- "@nx/devkit": ">= 20.8.4",
25
- "@nx/workspace": ">= 20.8.4",
26
- "nx": ">= 20.8.4"
24
+ "@nx/devkit": ">= 22.3.3",
25
+ "@nx/workspace": ">= 22.3.3",
26
+ "nx": ">= 22.3.3"
27
27
  },
28
28
  "dependencies": {},
29
29
  "types": "./src/index.d.ts",
@@ -6,14 +6,14 @@ exports.packageVersions = void 0;
6
6
  // Do not edit this file manually
7
7
  //------------------------------------------------------------------------------
8
8
  exports.packageVersions = {
9
- nx: '20.8.4',
9
+ nx: '22.3.3',
10
10
  firebase: '12.8.0',
11
11
  firebaseAdmin: '13.6.0',
12
12
  firebaseFunctions: '7.0.3',
13
13
  firebaseFunctionsTest: '3.4.1',
14
- firebaseTools: '13.35.1',
14
+ firebaseTools: '15.3.1',
15
15
  killPort: '2.0.1',
16
- nodeEngine: '18',
16
+ nodeEngine: '20',
17
17
  googleCloudFunctionsFramework: '3.3.0',
18
18
  };
19
19
  //# sourceMappingURL=nx-firebase-versions.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"nx-firebase-versions.js","sourceRoot":"","sources":["../../../../../packages/nx-firebase/src/__generated__/nx-firebase-versions.ts"],"names":[],"mappings":";;;AAAA,gFAAgF;AAChF,6EAA6E;AAC7E,iCAAiC;AACjC,gFAAgF;AACnE,QAAA,eAAe,GAAG;IAC7B,EAAE,EAAE,QAAQ;IACZ,QAAQ,EAAE,QAAQ;IAClB,aAAa,EAAE,QAAQ;IACvB,iBAAiB,EAAE,OAAO;IAC1B,qBAAqB,EAAE,OAAO;IAC9B,aAAa,EAAE,SAAS;IACxB,QAAQ,EAAE,OAAO;IACjB,UAAU,EAAE,IAAI;IAChB,6BAA6B,EAAE,OAAO;CACvC,CAAA"}
1
+ {"version":3,"file":"nx-firebase-versions.js","sourceRoot":"","sources":["../../../../../packages/nx-firebase/src/__generated__/nx-firebase-versions.ts"],"names":[],"mappings":";;;AAAA,gFAAgF;AAChF,6EAA6E;AAC7E,iCAAiC;AACjC,gFAAgF;AACnE,QAAA,eAAe,GAAG;IAC7B,EAAE,EAAE,QAAQ;IACZ,QAAQ,EAAE,QAAQ;IAClB,aAAa,EAAE,QAAQ;IACvB,iBAAiB,EAAE,OAAO;IAC1B,qBAAqB,EAAE,OAAO;IAC9B,aAAa,EAAE,QAAQ;IACvB,QAAQ,EAAE,OAAO;IACjB,UAAU,EAAE,IAAI;IAChB,6BAA6B,EAAE,OAAO;CACvC,CAAA"}
@@ -1,5 +1,5 @@
1
1
  {
2
- // Example:
2
+ // Example (Standard Edition):
3
3
  //
4
4
  // "indexes": [
5
5
  // {
@@ -21,6 +21,31 @@
21
21
  // },
22
22
  // ]
23
23
  // ]
24
+ //
25
+ // Example (Enterprise Edition):
26
+ //
27
+ // "indexes": [
28
+ // {
29
+ // "collectionGroup": "reviews",
30
+ // "queryScope": "COLLECTION_GROUP",
31
+ // "apiScope": "MONGODB_COMPATIBLE_API",
32
+ // "density": "DENSE",
33
+ // "multikey": false,
34
+ // "fields": [
35
+ // { "fieldPath": "baz", "mode": "ASCENDING" }
36
+ // ]
37
+ // },
38
+ // {
39
+ // "collectionGroup": "items",
40
+ // "queryScope": "COLLECTION_GROUP",
41
+ // "apiScope": "MONGODB_COMPATIBLE_API",
42
+ // "density": "SPARSE_ANY",
43
+ // "multikey": true,
44
+ // "fields": [
45
+ // { "fieldPath": "baz", "mode": "ASCENDING" }
46
+ // ]
47
+ // },
48
+ // ]
24
49
  "indexes": [],
25
50
  "fieldOverrides": []
26
51
  }
@@ -1,3 +1,5 @@
1
+ rules_version='2'
2
+
1
3
  service cloud.firestore {
2
4
  match /databases/{database}/documents {
3
5
  match /{document=**} {
@@ -7,12 +7,25 @@
7
7
  * See a full list of supported triggers at https://firebase.google.com/docs/functions
8
8
  */
9
9
 
10
- import {onRequest} from "firebase-functions/v2/https";
10
+ import {setGlobalOptions} from "firebase-functions";
11
+ import {onRequest} from "firebase-functions/https";
11
12
  import * as logger from "firebase-functions/logger";
12
13
 
13
14
  // Start writing functions
14
15
  // https://firebase.google.com/docs/functions/typescript
15
16
 
17
+ // For cost control, you can set the maximum number of containers that can be
18
+ // running at the same time. This helps mitigate the impact of unexpected
19
+ // traffic spikes by instead downgrading performance. This limit is a
20
+ // per-function limit. You can override the limit for each function using the
21
+ // `maxInstances` option in the function's options, e.g.
22
+ // `onRequest({ maxInstances: 5 }, (req, res) => { ... })`.
23
+ // NOTE: setGlobalOptions does not apply to functions using the v1 API. V1
24
+ // functions should each use functions.runWith({ maxInstances: 10 }) instead.
25
+ // In the v1 API, each function can only serve one request per container, so
26
+ // this will be the maximum concurrent request count.
27
+ setGlobalOptions({ maxInstances: 10 });
28
+
16
29
  // export const helloWorld = onRequest((request, response) => {
17
30
  // logger.info("Hello logs!", {structuredData: true});
18
31
  // response.send("Hello from Firebase!");
@@ -60,11 +60,15 @@ function updateProject(host, options) {
60
60
  // when running the firebase app's test target. passWithNoTests is a CLI option,
61
61
  // not a jest.config option, so we need to set it in the target.
62
62
  // In Nx 18+, the test target may not exist (inferred by plugin), so we create it.
63
+ // Nx 22+ creates jest.config.cts for ESM projects, so we check which file exists
64
+ const jestConfigFile = host.exists(`${options.projectRoot}/jest.config.cts`)
65
+ ? 'jest.config.cts'
66
+ : 'jest.config.ts';
63
67
  project.targets.test = {
64
68
  executor: '@nx/jest:jest',
65
69
  outputs: ['{workspaceRoot}/coverage/{projectRoot}'],
66
70
  options: {
67
- jestConfig: `${options.projectRoot}/jest.config.ts`,
71
+ jestConfig: `${options.projectRoot}/${jestConfigFile}`,
68
72
  passWithNoTests: true,
69
73
  },
70
74
  };
@@ -1 +1 @@
1
- {"version":3,"file":"update-project.js","sourceRoot":"","sources":["../../../../../../../packages/nx-firebase/src/generators/function/lib/update-project.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"update-project.js","sourceRoot":"","sources":["../../../../../../../packages/nx-firebase/src/generators/function/lib/update-project.ts"],"names":[],"mappings":"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"}
@@ -15,7 +15,7 @@ export interface Schema {
15
15
 
16
16
  // nx-firebase:function generator specific options
17
17
  app: string
18
- runTime?: '18' | '20' | '22'
18
+ runTime?: '20' | '22' | '24'
19
19
  format?: 'esm' | 'cjs'
20
20
  }
21
21
 
@@ -49,8 +49,8 @@
49
49
  "runTime": {
50
50
  "description": "The node runtime target for this function.",
51
51
  "type": "string",
52
- "enum": ["18", "20", "22"],
53
- "default": "18"
52
+ "enum": ["20", "22", "24"],
53
+ "default": "20"
54
54
  }
55
55
  },
56
56
  "additionalProperties": false,
@@ -6,11 +6,10 @@ const devkit_1 = require("@nx/devkit");
6
6
  const nx_firebase_versions_1 = require("../__generated__/nx-firebase-versions");
7
7
  // https://stackoverflow.com/questions/59787574/typescript-tsconfig-settings-for-node-js-12
8
8
  exports.nodeEsVersion = {
9
- '12': 'es2019',
10
- '14': 'es2020',
11
- '16': 'es2020', // es2020 seems more preferred with node 16 than es2021
12
9
  '18': 'es2022',
13
10
  '20': 'es2022',
11
+ '22': 'es2023',
12
+ '24': 'es2024',
14
13
  };
15
14
  /**
16
15
  * With firebase cli > 10.0.1 now compatible with node versions >=14 we can use es modules rather than commonjs
@@ -1 +1 @@
1
- {"version":3,"file":"update-tsconfig.js","sourceRoot":"","sources":["../../../../../packages/nx-firebase/src/utils/update-tsconfig.ts"],"names":[],"mappings":";;;AAmBA,wCAiBC;AApCD,uCAAqE;AACrE,gFAAuE;AAEvE,2FAA2F;AAE9E,QAAA,aAAa,GAA2B;IACnD,IAAI,EAAE,QAAQ;IACd,IAAI,EAAE,QAAQ;IACd,IAAI,EAAE,QAAQ,EAAE,uDAAuD;IACvE,IAAI,EAAE,QAAQ;IACd,IAAI,EAAE,QAAQ;CACf,CAAA;AAED;;;;;GAKG;AACH,SAAgB,cAAc,CAC5B,IAAU,EACV,WAAmB,EACnB,OAAe,EACf,MAAqB;;IAErB,MAAM,cAAc,GAClB,MAAA,qBAAa,CAAC,OAAO,CAAC,mCAAI,qBAAa,CAAC,sCAAe,CAAC,UAAU,CAAC,CAAA;IACrE,IAAA,mBAAU,EACR,IAAI,EACJ,IAAA,0BAAiB,EAAC,WAAW,EAAE,mBAAmB,CAAC,EACnD,CAAC,IAAI,EAAE,EAAE;QACP,IAAI,CAAC,eAAe,CAAC,MAAM,GAAG,cAAc,CAAA;QAC5C,IAAI,CAAC,eAAe,CAAC,MAAM,GAAG,MAAM,KAAK,KAAK,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,UAAU,CAAA;QACtE,OAAO,IAAI,CAAA;IACb,CAAC,CACF,CAAA;AACH,CAAC"}
1
+ {"version":3,"file":"update-tsconfig.js","sourceRoot":"","sources":["../../../../../packages/nx-firebase/src/utils/update-tsconfig.ts"],"names":[],"mappings":";;;AAkBA,wCAiBC;AAnCD,uCAAqE;AACrE,gFAAuE;AAEvE,2FAA2F;AAE9E,QAAA,aAAa,GAA2B;IACnD,IAAI,EAAE,QAAQ;IACd,IAAI,EAAE,QAAQ;IACd,IAAI,EAAE,QAAQ;IACd,IAAI,EAAE,QAAQ;CACf,CAAA;AAED;;;;;GAKG;AACH,SAAgB,cAAc,CAC5B,IAAU,EACV,WAAmB,EACnB,OAAe,EACf,MAAqB;;IAErB,MAAM,cAAc,GAClB,MAAA,qBAAa,CAAC,OAAO,CAAC,mCAAI,qBAAa,CAAC,sCAAe,CAAC,UAAU,CAAC,CAAA;IACrE,IAAA,mBAAU,EACR,IAAI,EACJ,IAAA,0BAAiB,EAAC,WAAW,EAAE,mBAAmB,CAAC,EACnD,CAAC,IAAI,EAAE,EAAE;QACP,IAAI,CAAC,eAAe,CAAC,MAAM,GAAG,cAAc,CAAA;QAC5C,IAAI,CAAC,eAAe,CAAC,MAAM,GAAG,MAAM,KAAK,KAAK,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,UAAU,CAAA;QACtE,OAAO,IAAI,CAAA;IACb,CAAC,CACF,CAAA;AACH,CAAC"}