@nrwl/angular 17.0.4 → 17.0.6

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  (The MIT License)
2
2
 
3
- Copyright (c) 2017-2024 Narwhal Technologies Inc.
3
+ Copyright (c) 2017-2023 Narwhal Technologies Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
package/README.md CHANGED
@@ -6,13 +6,8 @@
6
6
 
7
7
  @nrwl/angular will no longer be published in Nx v18.
8
8
 
9
- <p style="text-align: center;">
10
- <picture>
11
- <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-dark.svg">
12
- <img alt="Nx - Smart Monorepos · Fast CI" src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-light.svg" width="100%">
13
- </picture>
14
- </p>
9
+ <p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx.png" width="600" alt="Nx - Smart, Fast and Extensible Build System"></p>
15
10
 
16
- # Nx: Smart Monorepos · Fast CI
11
+ # Nx: Smart, Fast and Extensible Build System
17
12
 
18
- Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI.
13
+ Nx is a next generation build system with first class monorepo support and powerful integrations.
package/executors.json CHANGED
@@ -37,10 +37,10 @@
37
37
  "schema": "@nx/angular/src/builders/webpack-browser/schema.json",
38
38
  "description": "The `webpack-browser` executor is very similar to the standard `browser` builder provided by the Angular Devkit. It allows you to build your Angular application to a build artifact that can be hosted online. There are some key differences: \n- Supports Custom Webpack Configurations \n- Supports Incremental Building"
39
39
  },
40
- "dev-server": {
41
- "implementation": "@nx/angular/src/builders/dev-server/dev-server.impl",
42
- "schema": "@nx/angular/src/builders/dev-server/schema.json",
43
- "description": "The `dev-server` executor is very similar to the standard `dev-server` builder provided by the Angular Devkit. It is usually used in tandem with `@nrwl/angular:webpack-browser` when your Angular application uses a custom webpack configuration."
40
+ "webpack-dev-server": {
41
+ "implementation": "@nx/angular/src/builders/webpack-dev-server/webpack-dev-server.impl",
42
+ "schema": "@nx/angular/src/builders/webpack-dev-server/schema.json",
43
+ "description": "The `webpack-dev-server` executor is very similar to the standard `dev-server` builder provided by the Angular Devkit. It is usually used in tandem with `@nrwl/angular:webpack-browser` when your Angular application uses a custom webpack configuration."
44
44
  },
45
45
  "webpack-server": {
46
46
  "implementation": "@nx/angular/src/builders/webpack-server/webpack-server.impl",
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@nrwl/angular",
3
- "version": "17.0.4",
3
+ "version": "v17.0.6",
4
4
  "private": false,
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.",
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": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/nrwl/nx.git",
@@ -54,7 +54,7 @@
54
54
  "builders": "./executors.json",
55
55
  "schematics": "./generators.json",
56
56
  "dependencies": {
57
- "@nx/angular": "17.0.4",
57
+ "@nx/angular": "v17.0.6",
58
58
  "tslib": "^2.3.0"
59
59
  },
60
60
  "publishConfig": {