@nx/angular-rspack 23.1.1 → 23.1.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.
@@ -1 +1 @@
1
- {"version":3,"file":"angular-transform.loader.d.ts","sourceRoot":"","sources":["../../../../src/lib/plugins/loaders/angular-transform.loader.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAElD,OAAO,EACL,iBAAiB,EACjB,oBAAoB,EAErB,MAAM,6BAA6B,CAAC;AAMrC,MAAM,CAAC,OAAO,UAAU,MAAM,CAC5B,IAAI,EAAE,aAAa,CAAC,OAAO,CAAC,EAC5B,OAAO,EAAE,MAAM,EACf,GAAG,CAAC,EAAE;IACJ,iBAAiB,EAAE,iBAAiB,CAAC;IACrC,oBAAoB,EAAE,oBAAoB,CAAC;CAC5C,QAuFF"}
1
+ {"version":3,"file":"angular-transform.loader.d.ts","sourceRoot":"","sources":["../../../../src/lib/plugins/loaders/angular-transform.loader.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAGlD,OAAO,EACL,iBAAiB,EACjB,oBAAoB,EAErB,MAAM,6BAA6B,CAAC;AAMrC,MAAM,CAAC,OAAO,UAAU,MAAM,CAC5B,IAAI,EAAE,aAAa,CAAC,OAAO,CAAC,EAC5B,OAAO,EAAE,MAAM,EACf,GAAG,CAAC,EAAE;IACJ,iBAAiB,EAAE,iBAAiB,CAAC;IACrC,oBAAoB,EAAE,oBAAoB,CAAC;CAC5C,QAyFF"}
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.default = loader;
4
+ const node_path_1 = require("node:path");
4
5
  const models_1 = require("../../models");
5
6
  const angular_rspack_compiler_1 = require("@nx/angular-rspack-compiler");
6
7
  const inline_source_map_1 = require("./inline-source-map");
@@ -27,9 +28,11 @@ function loader(content, opt) {
27
28
  if (resourceDeps !== undefined) {
28
29
  // The compiler tracked this file's template and stylesheet
29
30
  // dependencies; registering them keeps the module rebuilding when a
30
- // resource changes, at no parsing cost.
31
+ // resource changes, at no parsing cost. The compiler reports them with
32
+ // POSIX separators, which the file watcher does not match on Windows,
33
+ // so normalize them to native separators.
31
34
  for (const dependency of resourceDeps) {
32
- this.addDependency(dependency);
35
+ this.addDependency((0, node_path_1.normalize)(dependency));
33
36
  }
34
37
  }
35
38
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/angular-rspack",
3
- "version": "23.1.1",
3
+ "version": "23.1.3",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -54,7 +54,7 @@
54
54
  },
55
55
  "dependencies": {
56
56
  "@ampproject/remapping": "2.3.0",
57
- "@babel/core": "^7.23.2",
57
+ "@babel/core": "^7.29.6",
58
58
  "@discoveryjs/json-ext": "0.6.3",
59
59
  "ansi-colors": "4.1.3",
60
60
  "autoprefixer": "^10.4.9",
@@ -77,8 +77,8 @@
77
77
  "tslib": "^2.3.0",
78
78
  "webpack-merge": "^6.0.1",
79
79
  "ws": "^8.18.0",
80
- "@nx/angular-rspack-compiler": "23.1.1",
81
- "@nx/devkit": "23.1.1"
80
+ "@nx/angular-rspack-compiler": "23.1.3",
81
+ "@nx/devkit": "23.1.3"
82
82
  },
83
83
  "devDependencies": {
84
84
  "jsonc-eslint-parser": "^2.4.0"