@nu-art/build-and-install 0.204.93 → 0.204.95

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.
@@ -33,6 +33,9 @@ export type FirebaseEnvConfig<Env extends string> = {
33
33
  };
34
34
  };
35
35
  };
36
+ otherConfig?: {
37
+ [ModuleName: string]: any;
38
+ };
36
39
  };
37
40
  export type FirebasePackageConfig<Env extends string = string> = {
38
41
  envs: FirebaseEnvConfig<Env>[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nu-art/build-and-install",
3
- "version": "0.204.93",
3
+ "version": "0.204.95",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "TacB0sS",
@@ -31,7 +31,6 @@ class Unit_FirebaseFunctionsApp extends core_1.Unit_TypescriptLib {
31
31
  //######################### Phase Implementations #########################
32
32
  async resolveConfigs() {
33
33
  await this.resolveFunctionsRC();
34
- await this.resolveProxyFile();
35
34
  await this.resolveConfigDir();
36
35
  await this.resolveFunctionsRuntimeConfig();
37
36
  await this.resolveFunctionsJSON();
@@ -242,6 +241,7 @@ class Unit_FirebaseFunctionsApp extends core_1.Unit_TypescriptLib {
242
241
  .execute();
243
242
  }
244
243
  async runProxy() {
244
+ await this.resolveProxyFile();
245
245
  const commando = this.allocateCommando(nvm_1.Commando_NVM).applyNVM()
246
246
  .cd(this.runtime.pathTo.pkg)
247
247
  .append('ts-node src/main/proxy.ts');
@@ -6,7 +6,7 @@ function convertPackageJSONTemplateToPackJSON_Value(template, value) {
6
6
  let workspacePackageJsonAsString = (0, ts_common_1.__stringify)(template, true);
7
7
  let match = null;
8
8
  do {
9
- match = workspacePackageJsonAsString.match(/"(.*?)": ?"\$([A-Z_]+?)"/);
9
+ match = workspacePackageJsonAsString.match(/"(.*?)": ?"\$([A-Za-z0-9_]+?)"/);
10
10
  if (match === null || match === void 0 ? void 0 : match[0])
11
11
  workspacePackageJsonAsString = workspacePackageJsonAsString.replace(new RegExp(`\\$${match[2]}`), value(match[2], match[1]));
12
12
  } while (match);