@angular/cli 19.1.0-next.1 → 19.1.0-rc.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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License
2
2
 
3
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
3
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -470,6 +470,7 @@
470
470
  "@angular/build:application",
471
471
  "@angular/build:dev-server",
472
472
  "@angular/build:extract-i18n",
473
+ "@angular/build:ng-packagr",
473
474
  "@angular-devkit/build-angular:application",
474
475
  "@angular-devkit/build-angular:app-shell",
475
476
  "@angular-devkit/build-angular:browser",
@@ -857,6 +858,28 @@
857
858
  }
858
859
  }
859
860
  }
861
+ },
862
+ {
863
+ "type": "object",
864
+ "additionalProperties": false,
865
+ "properties": {
866
+ "builder": {
867
+ "const": "@angular/build:ng-packagr"
868
+ },
869
+ "defaultConfiguration": {
870
+ "type": "string",
871
+ "description": "A default named configuration to use when a target configuration is not provided."
872
+ },
873
+ "options": {
874
+ "$ref": "#/definitions/AngularBuildBuildersNgPackagrSchema"
875
+ },
876
+ "configurations": {
877
+ "type": "object",
878
+ "additionalProperties": {
879
+ "$ref": "#/definitions/AngularBuildBuildersNgPackagrSchema"
880
+ }
881
+ }
882
+ }
860
883
  }
861
884
  ]
862
885
  }
@@ -5197,6 +5220,31 @@
5197
5220
  }
5198
5221
  },
5199
5222
  "additionalProperties": false
5223
+ },
5224
+ "AngularBuildBuildersNgPackagrSchema": {
5225
+ "title": "ng-packagr Target",
5226
+ "description": "ng-packagr target options for Build Architect. Use to build library projects.",
5227
+ "type": "object",
5228
+ "properties": {
5229
+ "project": {
5230
+ "type": "string",
5231
+ "description": "The file path for the ng-packagr configuration file, relative to the current workspace."
5232
+ },
5233
+ "tsConfig": {
5234
+ "type": "string",
5235
+ "description": "The full path for the TypeScript configuration file, relative to the current workspace."
5236
+ },
5237
+ "watch": {
5238
+ "type": "boolean",
5239
+ "description": "Run build when files change.",
5240
+ "default": false
5241
+ },
5242
+ "poll": {
5243
+ "type": "number",
5244
+ "description": "Enable and define the file watching poll time period in milliseconds."
5245
+ }
5246
+ },
5247
+ "additionalProperties": false
5200
5248
  }
5201
5249
  }
5202
5250
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "19.1.0-next.1",
3
+ "version": "19.1.0-rc.0",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -25,12 +25,12 @@
25
25
  },
26
26
  "homepage": "https://github.com/angular/angular-cli",
27
27
  "dependencies": {
28
- "@angular-devkit/architect": "0.1901.0-next.1",
29
- "@angular-devkit/core": "19.1.0-next.1",
30
- "@angular-devkit/schematics": "19.1.0-next.1",
31
- "@inquirer/prompts": "7.2.0",
28
+ "@angular-devkit/architect": "0.1901.0-rc.0",
29
+ "@angular-devkit/core": "19.1.0-rc.0",
30
+ "@angular-devkit/schematics": "19.1.0-rc.0",
31
+ "@inquirer/prompts": "7.2.1",
32
32
  "@listr2/prompt-adapter-inquirer": "2.0.18",
33
- "@schematics/angular": "19.1.0-next.1",
33
+ "@schematics/angular": "19.1.0-rc.0",
34
34
  "@yarnpkg/lockfile": "1.1.0",
35
35
  "ini": "5.0.0",
36
36
  "jsonc-parser": "3.3.1",
@@ -38,7 +38,7 @@
38
38
  "npm-package-arg": "12.0.1",
39
39
  "npm-pick-manifest": "10.0.0",
40
40
  "pacote": "20.0.0",
41
- "resolve": "1.22.8",
41
+ "resolve": "1.22.10",
42
42
  "semver": "7.6.3",
43
43
  "symbol-observable": "4.0.0",
44
44
  "yargs": "17.7.2"
@@ -46,17 +46,16 @@
46
46
  "ng-update": {
47
47
  "migrations": "@schematics/angular/migrations/migration-collection.json",
48
48
  "packageGroup": {
49
- "@angular/cli": "19.1.0-next.1",
50
- "@angular/build": "19.1.0-next.1",
51
- "@angular/ssr": "19.1.0-next.1",
52
- "@angular-devkit/architect": "0.1901.0-next.1",
53
- "@angular-devkit/build-angular": "19.1.0-next.1",
54
- "@angular-devkit/build-webpack": "0.1901.0-next.1",
55
- "@angular-devkit/core": "19.1.0-next.1",
56
- "@angular-devkit/schematics": "19.1.0-next.1"
49
+ "@angular/cli": "19.1.0-rc.0",
50
+ "@angular/build": "19.1.0-rc.0",
51
+ "@angular/ssr": "19.1.0-rc.0",
52
+ "@angular-devkit/architect": "0.1901.0-rc.0",
53
+ "@angular-devkit/build-angular": "19.1.0-rc.0",
54
+ "@angular-devkit/build-webpack": "0.1901.0-rc.0",
55
+ "@angular-devkit/core": "19.1.0-rc.0",
56
+ "@angular-devkit/schematics": "19.1.0-rc.0"
57
57
  }
58
58
  },
59
- "packageManager": "yarn@4.5.0",
60
59
  "engines": {
61
60
  "node": "^18.19.1 || ^20.11.1 || >=22.0.0",
62
61
  "npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
@@ -69,5 +68,8 @@
69
68
  "puppeteer": {
70
69
  "built": true
71
70
  }
71
+ },
72
+ "pnpm": {
73
+ "onlyBuiltDependencies": []
72
74
  }
73
75
  }
@@ -25,5 +25,5 @@ class Version {
25
25
  }
26
26
  }
27
27
  // TODO(bazel): Convert this to use build-time version stamping after flipping the build script to use bazel
28
- // export const VERSION = new Version('19.1.0-next.1');
28
+ // export const VERSION = new Version('19.1.0-rc.0');
29
29
  exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);