@o3r/core 11.1.0-prerelease.48 → 11.1.0-prerelease.49

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": "@o3r/core",
3
- "version": "11.1.0-prerelease.48",
3
+ "version": "11.1.0-prerelease.49",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -25,7 +25,7 @@
25
25
  "@ngrx/entity": "~18.0.0",
26
26
  "@ngrx/store": "~18.0.0",
27
27
  "@nx/angular": "~19.5.0",
28
- "@o3r/telemetry": "^11.1.0-prerelease.48",
28
+ "@o3r/telemetry": "^11.1.0-prerelease.49",
29
29
  "@schematics/angular": "~18.1.0",
30
30
  "chokidar": "^3.5.2",
31
31
  "globby": "^11.1.0",
@@ -59,7 +59,7 @@
59
59
  }
60
60
  },
61
61
  "dependencies": {
62
- "@o3r/schematics": "^11.1.0-prerelease.48",
62
+ "@o3r/schematics": "^11.1.0-prerelease.49",
63
63
  "tslib": "^2.6.2",
64
64
  "uuid": "^10.0.0"
65
65
  },
@@ -69,7 +69,7 @@
69
69
  "@ngrx/router-store": "~18.0.0",
70
70
  "@ngrx/effects": "~18.0.0",
71
71
  "@ngrx/store-devtools": "~18.0.0",
72
- "@o3r/store-sync": "^11.1.0-prerelease.48",
72
+ "@o3r/store-sync": "^11.1.0-prerelease.49",
73
73
  "@types/jest": "~29.5.2",
74
74
  "nx": "~19.5.0",
75
75
  "@typescript-eslint/parser": "^7.14.1",
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../schematics/rule-factories/otter-environment/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,IAAI,EAA0B,MAAM,4BAA4B,CAAC;AAOjF;;;;;;;;;;GAUG;AACH,wBAAgB,6BAA6B,CAC3C,OAAO,EAAE;IACP,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACxC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC,EACD,SAAS,EAAE,MAAM,GAChB,IAAI,CA8IN"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../schematics/rule-factories/otter-environment/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,IAAI,EAA0B,MAAM,4BAA4B,CAAC;AAOjF;;;;;;;;;;GAUG;AACH,wBAAgB,6BAA6B,CAC3C,OAAO,EAAE;IACP,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACxC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC,EACD,SAAS,EAAE,MAAM,GAChB,IAAI,CAqIN"}
@@ -43,16 +43,9 @@ function updateOtterEnvironmentAdapter(options, _rootPath) {
43
43
  };
44
44
  }
45
45
  });
46
- // force dist/ output folder for production build
47
- if (workspaceProject.architect && workspaceProject.architect.build) {
48
- workspaceProject.architect.build.configurations ||= {};
49
- workspaceProject.architect.build.configurations.production ||= {};
50
- workspaceProject.architect.build.configurations.production.outputPath ||= (0, node_path_1.join)(workspaceProject.root, 'dist');
51
- if (workspaceProject.architect.build.configurations.options &&
52
- workspaceProject.architect.build.configurations.options.outputPath &&
53
- /^dist([/].+)?/i.test(workspaceProject.architect.build.configurations.options.outputPath)) {
54
- workspaceProject.architect.build.configurations.options.outputPath ||= (0, node_path_1.join)(workspaceProject.root, 'dist-dev');
55
- }
46
+ // override angular's dist/webapp output path with apps/webapp/dist
47
+ if (workspaceProject.architect?.build?.options?.outputPath) {
48
+ workspaceProject.architect.build.options.outputPath = (0, node_path_1.join)(workspaceProject.root, 'dist');
56
49
  }
57
50
  workspace.projects[options.projectName] = workspaceProject;
58
51
  }