@angular-devkit/core 19.1.0-rc.0 → 19.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-devkit/core",
3
- "version": "19.1.0-rc.0",
3
+ "version": "19.1.0",
4
4
  "description": "Angular DevKit - Core Utility Library",
5
5
  "main": "src/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -218,7 +218,7 @@ function noCacheNormalize(path) {
218
218
  // Match absolute windows path.
219
219
  const original = path;
220
220
  if (path.match(/^[A-Z]:[/\\]/i)) {
221
- path = '\\' + path[0] + '\\' + path.slice(3);
221
+ path = '\\' + path[0].toUpperCase() + '\\' + path.slice(3);
222
222
  }
223
223
  // We convert Windows paths as well here.
224
224
  const p = path.split(/[/\\]/g);