| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 83d35d4 commit b4885b8
29 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -417,8 +417,6 @@ | |||
| 417 | 417 | "@angular-devkit/build-angular:karma", | |
| 418 | 418 | "@angular-devkit/build-angular:ng-packagr", | |
| 419 | 419 | "@angular-devkit/build-angular:prerender", | |
| 420 | - "@angular-devkit/build-angular:jest", | ||
| 421 | - "@angular-devkit/build-angular:web-test-runner", | ||
| 422 | 420 | "@angular-devkit/build-angular:server", | |
| 423 | 421 | "@angular-devkit/build-angular:ssr-dev-server" | |
| 424 | 422 | ] | |
@@ -706,50 +704,6 @@ | |||
| 706 | 704 | } | |
| 707 | 705 | } | |
| 708 | 706 | }, | |
| 709 | - { | ||
| 710 | - "type": "object", | ||
| 711 | - "additionalProperties": false, | ||
| 712 | - "properties": { | ||
| 713 | - "builder": { | ||
| 714 | - "const": "@angular-devkit/build-angular:jest" | ||
| 715 | - }, | ||
| 716 | - "defaultConfiguration": { | ||
| 717 | - "type": "string", | ||
| 718 | - "description": "A default named configuration to use when a target configuration is not provided." | ||
| 719 | - }, | ||
| 720 | - "options": { | ||
| 721 | - "$ref": "../../../../angular_devkit/build_angular/src/builders/jest/schema.json" | ||
| 722 | - }, | ||
| 723 | - "configurations": { | ||
| 724 | - "type": "object", | ||
| 725 | - "additionalProperties": { | ||
| 726 | - "$ref": "../../../../angular_devkit/build_angular/src/builders/jest/schema.json" | ||
| 727 | - } | ||
| 728 | - } | ||
| 729 | - } | ||
| 730 | - }, | ||
| 731 | - { | ||
| 732 | - "type": "object", | ||
| 733 | - "additionalProperties": false, | ||
| 734 | - "properties": { | ||
| 735 | - "builder": { | ||
| 736 | - "const": "@angular-devkit/build-angular:web-test-runner" | ||
| 737 | - }, | ||
| 738 | - "defaultConfiguration": { | ||
| 739 | - "type": "string", | ||
| 740 | - "description": "A default named configuration to use when a target configuration is not provided." | ||
| 741 | - }, | ||
| 742 | - "options": { | ||
| 743 | - "$ref": "../../../../angular_devkit/build_angular/src/builders/web-test-runner/schema.json" | ||
| 744 | - }, | ||
| 745 | - "configurations": { | ||
| 746 | - "type": "object", | ||
| 747 | - "additionalProperties": { | ||
| 748 | - "$ref": "../../../../angular_devkit/build_angular/src/builders/web-test-runner/schema.json" | ||
| 749 | - } | ||
| 750 | - } | ||
| 751 | - } | ||
| 752 | - }, | ||
| 753 | 707 | { | |
| 754 | 708 | "type": "object", | |
| 755 | 709 | "additionalProperties": false, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -39,11 +39,6 @@ ts_json_schema( | |||
| 39 | 39 | src = "src/builders/extract-i18n/schema.json", | |
| 40 | 40 | ) | |
| 41 | 41 | ||
| 42 | - ts_json_schema( | ||
| 43 | - name = "jest_schema", | ||
| 44 | - src = "src/builders/jest/schema.json", | ||
| 45 | - ) | ||
| 46 | - | ||
| 47 | 42 | ts_json_schema( | |
| 48 | 43 | name = "karma_schema", | |
| 49 | 44 | src = "src/builders/karma/schema.json", | |
@@ -74,11 +69,6 @@ ts_json_schema( | |||
| 74 | 69 | src = "src/builders/prerender/schema.json", | |
| 75 | 70 | ) | |
| 76 | 71 | ||
| 77 | - ts_json_schema( | ||
| 78 | - name = "web_test_runner_schema", | ||
| 79 | - src = "src/builders/web-test-runner/schema.json", | ||
| 80 | - ) | ||
| 81 | - | ||
| 82 | 72 | copy_to_bin( | |
| 83 | 73 | name = "schemas", | |
| 84 | 74 | srcs = glob(["**/schema.json"]), | |
@@ -88,7 +78,6 @@ RUNTIME_ASSETS = glob( | |||
| 88 | 78 | include = [ | |
| 89 | 79 | "src/**/schema.json", | |
| 90 | 80 | "src/**/*.js", | |
| 91 | - "src/**/*.mjs", | ||
| 92 | 81 | "src/**/*.html", | |
| 93 | 82 | ], | |
| 94 | 83 | ) + [ | |
@@ -117,14 +106,12 @@ ts_project( | |||
| 117 | 106 | "//packages/angular_devkit/build_angular:src/builders/browser/schema.ts", | |
| 118 | 107 | "//packages/angular_devkit/build_angular:src/builders/dev-server/schema.ts", | |
| 119 | 108 | "//packages/angular_devkit/build_angular:src/builders/extract-i18n/schema.ts", | |
| 120 | - "//packages/angular_devkit/build_angular:src/builders/jest/schema.ts", | ||
| 121 | 109 | "//packages/angular_devkit/build_angular:src/builders/karma/schema.ts", | |
| 122 | 110 | "//packages/angular_devkit/build_angular:src/builders/ng-packagr/schema.ts", | |
| 123 | 111 | "//packages/angular_devkit/build_angular:src/builders/prerender/schema.ts", | |
| 124 | 112 | "//packages/angular_devkit/build_angular:src/builders/protractor/schema.ts", | |
| 125 | 113 | "//packages/angular_devkit/build_angular:src/builders/server/schema.ts", | |
| 126 | 114 | "//packages/angular_devkit/build_angular:src/builders/ssr-dev-server/schema.ts", | |
| 127 | - "//packages/angular_devkit/build_angular:src/builders/web-test-runner/schema.ts", | ||
| 128 | 115 | ], | |
| 129 | 116 | data = RUNTIME_ASSETS, | |
| 130 | 117 | deps = [ | |
@@ -145,7 +132,6 @@ ts_project( | |||
| 145 | 132 | ":node_modules/@babel/runtime", | |
| 146 | 133 | ":node_modules/@discoveryjs/json-ext", | |
| 147 | 134 | ":node_modules/@ngtools/webpack", | |
| 148 | - ":node_modules/@web/test-runner", | ||
| 149 | 135 | ":node_modules/ansi-colors", | |
| 150 | 136 | ":node_modules/autoprefixer", | |
| 151 | 137 | ":node_modules/babel-loader", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -27,21 +27,11 @@ | |||
| 27 | 27 | "schema": "./src/builders/extract-i18n/schema.json", | |
| 28 | 28 | "description": "Extract i18n strings from a browser application." | |
| 29 | 29 | }, | |
| 30 | - "jest": { | ||
| 31 | - "implementation": "./src/builders/jest", | ||
| 32 | - "schema": "./src/builders/jest/schema.json", | ||
| 33 | - "description": "Run unit tests using Jest." | ||
| 34 | - }, | ||
| 35 | 30 | "karma": { | |
| 36 | 31 | "implementation": "./src/builders/karma", | |
| 37 | 32 | "schema": "./src/builders/karma/schema.json", | |
| 38 | 33 | "description": "Run Karma unit tests." | |
| 39 | 34 | }, | |
| 40 | - "web-test-runner": { | ||
| 41 | - "implementation": "./src/builders/web-test-runner", | ||
| 42 | - "schema": "./src/builders/web-test-runner/schema.json", | ||
| 43 | - "description": "Run unit tests with Web Test Runner." | ||
| 44 | - }, | ||
| 45 | 35 | "protractor": { | |
| 46 | 36 | "implementation": "./src/builders/protractor-error", | |
| 47 | 37 | "schema": "./src/builders/protractor/schema.json", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -66,7 +66,6 @@ | |||
| 66 | 66 | }, | |
| 67 | 67 | "devDependencies": { | |
| 68 | 68 | "@angular/ssr": "workspace:*", | |
| 69 | - "@web/test-runner": "0.20.2", | ||
| 70 | 69 | "browser-sync": "3.0.4", | |
| 71 | 70 | "ng-packagr": "21.2.0-next.0", | |
| 72 | 71 | "undici": "7.22.0" | |
@@ -79,10 +78,7 @@ | |||
| 79 | 78 | "@angular/platform-server": "0.0.0-ANGULAR-FW-PEER-DEP", | |
| 80 | 79 | "@angular/service-worker": "0.0.0-ANGULAR-FW-PEER-DEP", | |
| 81 | 80 | "@angular/ssr": "^0.0.0-PLACEHOLDER", | |
| 82 | - "@web/test-runner": "^0.20.0", | ||
| 83 | 81 | "browser-sync": "^3.0.2", | |
| 84 | - "jest": "^30.2.0", | ||
| 85 | - "jest-environment-jsdom": "^30.2.0", | ||
| 86 | 82 | "karma": "^6.3.0", | |
| 87 | 83 | "ng-packagr": "0.0.0-NG-PACKAGR-PEER-DEP", | |
| 88 | 84 | "protractor": "^7.0.0", | |
@@ -108,18 +104,9 @@ | |||
| 108 | 104 | "@angular/ssr": { | |
| 109 | 105 | "optional": true | |
| 110 | 106 | }, | |
| 111 | - "@web/test-runner": { | ||
| 112 | - "optional": true | ||
| 113 | - }, | ||
| 114 | 107 | "browser-sync": { | |
| 115 | 108 | "optional": true | |
| 116 | 109 | }, | |
| 117 | - "jest": { | ||
| 118 | - "optional": true | ||
| 119 | - }, | ||
| 120 | - "jest-environment-jsdom": { | ||
| 121 | - "optional": true | ||
| 122 | - }, | ||
| 123 | 110 | "karma": { | |
| 124 | 111 | "optional": true | |
| 125 | 112 | }, | |
| Back | FazBrowse Home | New Git URL |
0 commit comments