@nx/angular 19.0.0-canary.20240419-e617e54 → 19.0.0-canary.20240420-9ca53b7

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/angular",
3
- "version": "19.0.0-canary.20240419-e617e54",
3
+ "version": "19.0.0-canary.20240420-9ca53b7",
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- Single Component Application Modules (SCAMs) \n\n- NgRx helpers. \n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
@@ -78,14 +78,14 @@
78
78
  "tslib": "^2.3.0",
79
79
  "webpack": "^5.80.0",
80
80
  "webpack-merge": "^5.8.0",
81
- "@nx/devkit": "19.0.0-canary.20240419-e617e54",
82
- "@nx/js": "19.0.0-canary.20240419-e617e54",
83
- "@nx/eslint": "19.0.0-canary.20240419-e617e54",
84
- "@nx/webpack": "19.0.0-canary.20240419-e617e54",
85
- "@nx/web": "19.0.0-canary.20240419-e617e54",
86
- "@nx/workspace": "19.0.0-canary.20240419-e617e54",
81
+ "@nx/devkit": "19.0.0-canary.20240420-9ca53b7",
82
+ "@nx/js": "19.0.0-canary.20240420-9ca53b7",
83
+ "@nx/eslint": "19.0.0-canary.20240420-9ca53b7",
84
+ "@nx/webpack": "19.0.0-canary.20240420-9ca53b7",
85
+ "@nx/web": "19.0.0-canary.20240420-9ca53b7",
86
+ "@nx/workspace": "19.0.0-canary.20240420-9ca53b7",
87
87
  "piscina": "^4.4.0",
88
- "@nrwl/angular": "19.0.0-canary.20240419-e617e54"
88
+ "@nrwl/angular": "19.0.0-canary.20240420-9ca53b7"
89
89
  },
90
90
  "peerDependencies": {
91
91
  "@angular-devkit/build-angular": ">= 15.0.0 < 18.0.0",
@@ -73,7 +73,7 @@ class StylesheetProcessor {
73
73
  const browserslistData = browserslist(undefined, { path: this.basePath });
74
74
  const { version: ngPackagrVersion } = (0, angular_version_utils_1.getInstalledPackageVersionInfo)('ng-packagr');
75
75
  let postcssConfiguration;
76
- if ((0, semver_1.gte)(ngPackagrVersion, '17.3.0')) {
76
+ if ((0, semver_1.gt)(ngPackagrVersion, '17.2.0')) {
77
77
  const { loadPostcssConfiguration, } = require('ng-packagr/lib/styles/postcss-configuration');
78
78
  postcssConfiguration = loadPostcssConfiguration(this.projectBasePath);
79
79
  }