forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
357 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,7 @@ yarn-error.log* | |
.husky/_ | ||
.bazelrc.user | ||
.eslintcache | ||
.cache/ | ||
|
||
# Mac OSX Finder files. | ||
**/.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const { join } = require('path'); | ||
|
||
/** | ||
* @type {import("puppeteer").Configuration} | ||
*/ | ||
module.exports = { | ||
// Changes the cache location for Puppeteer. | ||
cacheDirectory: join(__dirname, '.cache', 'puppeteer'), | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,8 +18,8 @@ | |
"templates": "yarn admin templates", | ||
"validate": "yarn admin validate", | ||
"postinstall": "patch-package && yarn webdriver-update && yarn husky", | ||
"//webdriver-update-README": "ChromeDriver version must match Puppeteer Chromium version, see https://github.com/GoogleChrome/puppeteer/releases http://chromedriver.chromium.org/downloads", | ||
"webdriver-update": "webdriver-manager update --standalone false --gecko false --versions.chrome 106.0.5249.21", | ||
"//webdriver-update-README": "ChromeDriver version must match Puppeteer Chromium version", | ||
"webdriver-update": "yarn browsers install [email protected] --path=./.cache/puppeteer/", | ||
"public-api:check": "node goldens/public-api/manage.js test", | ||
"ng-dev": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only node_modules/@angular/ng-dev/bundles/cli.mjs", | ||
"public-api:update": "node goldens/public-api/manage.js accept", | ||
|
@@ -80,6 +80,7 @@ | |
"@inquirer/confirm": "5.1.3", | ||
"@inquirer/prompts": "7.2.3", | ||
"@listr2/prompt-adapter-inquirer": "2.0.18", | ||
"@puppeteer/browsers": "2.7.0", | ||
"@rollup/plugin-alias": "^5.1.1", | ||
"@rollup/plugin-commonjs": "^28.0.0", | ||
"@rollup/plugin-node-resolve": "^13.0.5", | ||
|
@@ -176,7 +177,7 @@ | |
"postcss-loader": "8.1.1", | ||
"prettier": "^3.0.0", | ||
"protractor": "~7.0.0", | ||
"puppeteer": "18.2.1", | ||
"puppeteer": "23.1.0", | ||
"quicktype-core": "23.0.171", | ||
"resolve-url-loader": "5.0.0", | ||
"rollup": "4.31.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.