@nx/angular 16.6.0-beta.7 → 16.6.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": "@nx/angular",
3
- "version": "16.6.0-beta.7",
3
+ "version": "16.6.0",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: \n\n- Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, and Cypress. \n\n- Generators to help scaffold code quickly (like: Micro Frontends, Libraries, both internal to your codebase and publishable to npm) \n\n- Upgrading AngularJS applications \n\n- Single Component Application Modules (SCAMs) \n\n- NgRx helpers. \n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
@@ -66,14 +66,14 @@
66
66
  "migrations": "./migrations.json"
67
67
  },
68
68
  "dependencies": {
69
- "@nrwl/angular": "16.6.0-beta.7",
70
- "@nx/cypress": "16.6.0-beta.7",
71
- "@nx/devkit": "16.6.0-beta.7",
72
- "@nx/jest": "16.6.0-beta.7",
73
- "@nx/js": "16.6.0-beta.7",
74
- "@nx/linter": "16.6.0-beta.7",
75
- "@nx/webpack": "16.6.0-beta.7",
76
- "@nx/workspace": "16.6.0-beta.7",
69
+ "@nrwl/angular": "16.6.0",
70
+ "@nx/cypress": "16.6.0",
71
+ "@nx/devkit": "16.6.0",
72
+ "@nx/jest": "16.6.0",
73
+ "@nx/js": "16.6.0",
74
+ "@nx/linter": "16.6.0",
75
+ "@nx/webpack": "16.6.0",
76
+ "@nx/workspace": "16.6.0",
77
77
  "@phenomnomnominal/tsquery": "~5.0.1",
78
78
  "@typescript-eslint/type-utils": "^5.36.1",
79
79
  "chalk": "^4.1.0",
@@ -107,5 +107,5 @@
107
107
  "module": "fesm2022/nx-angular.mjs",
108
108
  "typings": "index.d.ts",
109
109
  "sideEffects": false,
110
- "gitHead": "6afe0a7c20059d6cdc8e455758a17886f933a0dc"
110
+ "gitHead": "d02a8dbf06c85de78c0c76f64a17f10ae8085739"
111
111
  }
@@ -19,7 +19,7 @@ const log = require("ng-packagr/lib/utils/log");
19
19
  const path_1 = require("path");
20
20
  const postcssPresetEnv = require("postcss-preset-env");
21
21
  const postcssUrl = require("postcss-url");
22
- const url_1 = require("url");
22
+ const node_url_1 = require("node:url");
23
23
  const angular_version_utils_1 = require("../../../utilities/angular-version-utils");
24
24
  const tailwindcss_1 = require("../../../utilities/tailwindcss");
25
25
  const postcss = require('postcss');
@@ -187,7 +187,7 @@ class StylesheetProcessor {
187
187
  }
188
188
  return (yield Promise.resolve().then(() => require('sass')))
189
189
  .compileString(css, {
190
- url: (0, url_1.pathToFileURL)(filePath),
190
+ url: (0, node_url_1.pathToFileURL)(filePath),
191
191
  syntax: '.sass' === ext ? 'indented' : 'scss',
192
192
  loadPaths: this.styleIncludePaths,
193
193
  })
@@ -19,7 +19,7 @@ const log = require("ng-packagr/lib/utils/log");
19
19
  const path_1 = require("path");
20
20
  const postcssPresetEnv = require("postcss-preset-env");
21
21
  const postcssUrl = require("postcss-url");
22
- const url_1 = require("url");
22
+ const node_url_1 = require("node:url");
23
23
  const angular_version_utils_1 = require("../../../utilities/angular-version-utils");
24
24
  const tailwindcss_1 = require("../../../utilities/tailwindcss");
25
25
  const postcss = require('postcss');
@@ -180,7 +180,7 @@ class StylesheetProcessor {
180
180
  }
181
181
  return (yield Promise.resolve().then(() => require('sass')))
182
182
  .compileString(css, {
183
- url: (0, url_1.pathToFileURL)(filePath),
183
+ url: (0, node_url_1.pathToFileURL)(filePath),
184
184
  syntax: '.sass' === ext ? 'indented' : 'scss',
185
185
  loadPaths: this.styleIncludePaths,
186
186
  })