hash
stringlengths 40
40
| date
stringdate 2016-01-01 23:11:19
2025-03-21 19:56:31
| author
stringclasses 133
values | commit_message
stringlengths 13
137
| is_merge
bool 1
class | masked_commit_message
stringlengths 5
116
| type
stringclasses 11
values | git_diff
stringlengths 113
3.11M
|
|---|---|---|---|---|---|---|---|
39b4cc030b0deba88627d659df01aaf3663f0265
|
2018-08-31 05:19:31
|
Hans Larsen
|
build: fix RxJS invalid typings
| false
|
fix RxJS invalid typings
|
build
|
diff --git a/packages/angular_devkit/core/src/json/schema/registry.ts b/packages/angular_devkit/core/src/json/schema/registry.ts
index b16d79495839..89130f10d563 100644
--- a/packages/angular_devkit/core/src/json/schema/registry.ts
+++ b/packages/angular_devkit/core/src/json/schema/registry.ts
@@ -258,7 +258,7 @@ export class CoreSchemaRegistry implements SchemaRegistry {
return Promise.reject(err);
}));
}),
- switchMap(([data, valid]) => {
+ switchMap(([data, valid]: [JsonValue, boolean]) => {
if (!validationOptions.withPrompts) {
return observableOf([data, valid]);
}
@@ -274,7 +274,7 @@ export class CoreSchemaRegistry implements SchemaRegistry {
return observableOf([data, valid]);
}
}),
- switchMap(([data, valid]) => {
+ switchMap(([data, valid]: [JsonValue, boolean]) => {
if (valid) {
return observableOf(data).pipe(
...[...this._post].map(visitor => concatMap((data: JsonValue) => {
@@ -287,7 +287,7 @@ export class CoreSchemaRegistry implements SchemaRegistry {
return observableOf([data, valid]);
}
}),
- map(([data, valid]) => {
+ map(([data, valid]: [JsonValue, boolean]) => {
if (valid) {
return { data, success: true } as SchemaValidatorResult;
}
|
2b8efdc5e5f889624af8f06a1b2d9cb3de5e9546
|
2016-01-23 12:45:59
|
gdi2290
|
chore(gitignore): correctly ignore module builds
| false
|
correctly ignore module builds
|
chore
|
diff --git a/.gitignore b/.gitignore
index 1afca2b605c6..14c2f2ec474d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -24,7 +24,6 @@ pids
# Commenting this out is preferred by some people, see
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
node_modules
-modules/preboot/node_modules
# used for karma unit test coverage
test/coverage
@@ -34,30 +33,22 @@ test/coverage
# Server
/dist/
-/modules/server/dist/
-# /modules/server/typings/
-!/modules/server/typings/_custom
-!/modules/server/typings/tsd.d.ts
# Static files
/bower_components/
/web_modules/
-# Preboot
-/modules/preboot/node_modules
-/modules/preboot/dist
-# /modules/preboot/typings/
-!/modules/preboot/typings/_custom
-!/modules/preboot/typings/tsd.d.ts
-
# inline ts compile
modules/**/*.js
# Typings
/typings
-/modules/universal/client/typings
-/modules/universal/server/typings
/tsd_typings
-/modules/universal/dist/
+/modules/universal/client/typings
+/modules/universal/server/typings
+/modules/**/dist
+/modules/**/node_modules
+/modules/**/test
+/modules/**/typings
|
92b9a2b9aaae34cf4db0775e111eb92fed32df0c
|
2016-03-21 00:55:00
|
gdi2290
|
chore(universal): tsconfig don't compile in atom
| false
|
tsconfig don't compile in atom
|
chore
|
diff --git a/modules/universal/tsconfig.json b/modules/universal/tsconfig.json
index 57d79a9398db..4e841bee94fd 100644
--- a/modules/universal/tsconfig.json
+++ b/modules/universal/tsconfig.json
@@ -36,5 +36,8 @@
"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"placeOpenBraceOnNewLineForFunctions": false,
"placeOpenBraceOnNewLineForControlBlocks": false
- }
+ },
+ "compileOnSave": false,
+ "buildOnSave": false,
+ "atom": { "rewriteTsconfig": false }
}
|
a21eb1588e308cea752c8536aae1800a266fc9db
|
2020-09-15 02:06:30
|
Alan Agius
|
fix(@angular/cli): improve logs in ng update
| false
|
improve logs in ng update
|
fix
|
diff --git a/packages/angular/cli/commands/update-impl.ts b/packages/angular/cli/commands/update-impl.ts
index de07f4bccb59..a2fd81991b4c 100644
--- a/packages/angular/cli/commands/update-impl.ts
+++ b/packages/angular/cli/commands/update-impl.ts
@@ -123,7 +123,7 @@ export class UpdateCommand extends Command<UpdateCommandSchema> {
if (event.kind == 'end' || event.kind == 'post-tasks-start') {
if (!error) {
// Output the logging queue, no error happened.
- logs.forEach(log => this.logger.info(log));
+ logs.forEach(log => this.logger.info(` ${log}`));
logs = [];
}
}
@@ -231,7 +231,16 @@ export class UpdateCommand extends Command<UpdateCommandSchema> {
commit = false,
): Promise<boolean> {
for (const migration of migrations) {
- this.logger.info(`${colors.symbols.pointer} ${migration.description.replace(/\. /g, '.\n ')}`);
+ const [title, ...description] = migration.description.split('. ');
+
+ this.logger.info(
+ colors.cyan(colors.symbols.pointer) + ' ' +
+ colors.bold(title.endsWith('.') ? title : title + '.'),
+ );
+
+ if (description.length) {
+ this.logger.info(' ' + description.join('.\n '));
+ }
const result = await this.executeSchematic(migration.collection.name, migration.name);
if (!result.success) {
|
554709569376ab66084a5baac53d259506020366
|
2023-11-03 20:17:12
|
Alan Agius
|
refactor: import `path` methods individually
| false
|
import `path` methods individually
|
refactor
|
diff --git a/packages/angular_devkit/build_angular/src/builders/dev-server/vite-server.ts b/packages/angular_devkit/build_angular/src/builders/dev-server/vite-server.ts
index 816d2ba3e892..bcb9a42a8e9a 100644
--- a/packages/angular_devkit/build_angular/src/builders/dev-server/vite-server.ts
+++ b/packages/angular_devkit/build_angular/src/builders/dev-server/vite-server.ts
@@ -15,7 +15,7 @@ import assert from 'node:assert';
import { randomUUID } from 'node:crypto';
import { readFile } from 'node:fs/promises';
import { ServerResponse } from 'node:http';
-import path from 'node:path';
+import { dirname, extname, join, relative } from 'node:path';
import type { Connect, DepOptimizationConfig, InlineConfig, ViteDevServer } from 'vite';
import { BuildOutputFile, BuildOutputFileType } from '../../tools/esbuild/bundler-context';
import { JavaScriptTransformer } from '../../tools/esbuild/javascript-transformer';
@@ -200,7 +200,7 @@ export async function* serveWithVite(
}
const { root = '' } = await context.getProjectMetadata(projectName);
- const projectRoot = path.join(context.workspaceRoot, root as string);
+ const projectRoot = join(context.workspaceRoot, root as string);
const browsers = getSupportedBrowsers(projectRoot, context.logger);
const target = transformSupportedBrowsersToTargets(browsers);
@@ -262,7 +262,7 @@ function handleUpdate(
if (record.updated) {
updatedFiles.push(file);
const updatedModules = server.moduleGraph.getModulesByFile(
- normalizePath(path.join(server.config.root, file)),
+ normalizePath(join(server.config.root, file)),
);
updatedModules?.forEach((m) => server?.moduleGraph.invalidateModule(m));
}
@@ -389,7 +389,7 @@ export async function setupServer(
// Path will not exist on disk and only used to provide separate path for Vite requests
const virtualProjectRoot = normalizePath(
- path.join(serverOptions.workspaceRoot, `.angular/vite-root/${randomUUID()}/`),
+ join(serverOptions.workspaceRoot, `.angular/vite-root/${randomUUID()}/`),
);
const { builtinModules } = await import('node:module');
@@ -397,7 +397,7 @@ export async function setupServer(
const configuration: InlineConfig = {
configFile: false,
envFile: false,
- cacheDir: path.join(serverOptions.cacheOptions.path, 'vite'),
+ cacheDir: join(serverOptions.cacheOptions.path, 'vite'),
root: virtualProjectRoot,
publicDir: false,
esbuild: false,
@@ -462,7 +462,7 @@ export async function setupServer(
const [importerFile] = importer.split('?', 1);
source = normalizePath(
- path.join(path.dirname(path.relative(virtualProjectRoot, importerFile)), source),
+ join(dirname(relative(virtualProjectRoot, importerFile)), source),
);
}
if (source[0] === '/') {
@@ -470,12 +470,12 @@ export async function setupServer(
}
const [file] = source.split('?', 1);
if (outputFiles.has(file)) {
- return path.join(virtualProjectRoot, source);
+ return join(virtualProjectRoot, source);
}
},
load(id) {
const [file] = id.split('?', 1);
- const relativeFile = normalizePath(path.relative(virtualProjectRoot, file));
+ const relativeFile = normalizePath(relative(virtualProjectRoot, file));
const codeContents = outputFiles.get(relativeFile)?.contents;
if (codeContents === undefined) {
if (relativeFile.endsWith('/node_modules/vite/dist/client/client.mjs')) {
@@ -530,7 +530,7 @@ export async function setupServer(
// Parse the incoming request.
// The base of the URL is unused but required to parse the URL.
const pathname = pathnameWithoutServePath(req.url, serverOptions);
- const extension = path.extname(pathname);
+ const extension = extname(pathname);
// Rewrite all build assets to a vite raw fs URL
const assetSourcePath = assets.get(pathname);
@@ -586,7 +586,7 @@ export async function setupServer(
!url ||
// Skip if path is like a file.
// NOTE: We use a regexp to mitigate against matching requests like: /browse/pl.0ef59752c0cd457dbf1391f08cbd936f
- /^\.[a-z]{2,4}$/i.test(path.extname(url.split('?')[0]))
+ /^\.[a-z]{2,4}$/i.test(extname(url.split('?')[0]))
) {
next();
@@ -607,9 +607,9 @@ export async function setupServer(
document: html,
route,
serverContext: 'ssr',
- loadBundle: (path: string) =>
+ loadBundle: (uri: string) =>
// eslint-disable-next-line @typescript-eslint/no-explicit-any
- server.ssrLoadModule(path.slice(1)) as any,
+ server.ssrLoadModule(uri.slice(1)) as any,
// Files here are only needed for critical CSS inlining.
outputFiles: {},
// TODO: add support for critical css inlining.
|
72a65ddf5e14080b1a0235d67704a29cb202fae5
|
2018-09-20 00:04:55
|
Charles Lyding
|
feat(@angular-devkit/build-angular): update webpack dependencies
| false
|
update webpack dependencies
|
feat
|
diff --git a/packages/angular_devkit/build_angular/package.json b/packages/angular_devkit/build_angular/package.json
index 180ad9f2c8be..3f1b61dba346 100644
--- a/packages/angular_devkit/build_angular/package.json
+++ b/packages/angular_devkit/build_angular/package.json
@@ -26,7 +26,7 @@
"less-loader": "4.1.0",
"license-webpack-plugin": "1.4.0",
"loader-utils": "1.1.0",
- "mini-css-extract-plugin": "0.4.2",
+ "mini-css-extract-plugin": "0.4.3",
"minimatch": "3.0.4",
"parse5": "4.0.0",
"opn": "5.3.0",
@@ -45,13 +45,13 @@
"stylus": "0.54.5",
"stylus-loader": "3.0.2",
"tree-kill": "1.2.0",
- "terser-webpack-plugin": "1.0.2",
- "webpack": "4.17.2",
- "webpack-dev-middleware": "3.2.0",
- "webpack-dev-server": "3.1.7",
+ "terser-webpack-plugin": "1.1.0",
+ "webpack": "4.19.1",
+ "webpack-dev-middleware": "3.3.0",
+ "webpack-dev-server": "3.1.8",
"webpack-merge": "4.1.4",
"webpack-sources": "1.2.0",
- "webpack-subresource-integrity": "1.1.0-rc.4"
+ "webpack-subresource-integrity": "1.1.0-rc.6"
},
"optionalDependencies": {
"node-sass": "4.9.3"
diff --git a/yarn.lock b/yarn.lock
index 7e4b6e3f81b3..0fbf50f4cfbc 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -492,141 +492,142 @@
"@types/uglify-js" "*"
source-map "^0.6.0"
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.5.13.tgz#81155a570bd5803a30ec31436bc2c9c0ede38f25"
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.7.6.tgz#3ef8c45b3e5e943a153a05281317474fef63e21e"
dependencies:
- "@webassemblyjs/helper-module-context" "1.5.13"
- "@webassemblyjs/helper-wasm-bytecode" "1.5.13"
- "@webassemblyjs/wast-parser" "1.5.13"
- debug "^3.1.0"
+ "@webassemblyjs/helper-module-context" "1.7.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.7.6"
+ "@webassemblyjs/wast-parser" "1.7.6"
mamacro "^0.0.3"
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.5.13.tgz#29ce0baa97411f70e8cce68ce9c0f9d819a4e298"
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.6.tgz#7cb37d51a05c3fe09b464ae7e711d1ab3837801f"
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.5.13.tgz#e49b051d67ee19a56e29b9aa8bd949b5b4442a59"
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.6.tgz#99b7e30e66f550a2638299a109dda84a622070ef"
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.5.13.tgz#873bb0a1b46449231137c1262ddfd05695195a1e"
- dependencies:
- debug "^3.1.0"
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.6.tgz#ba0648be12bbe560c25c997e175c2018df39ca3e"
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.5.13.tgz#1bd2181b6a0be14e004f0fe9f5a660d265362b58"
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.6.tgz#5a94d21b0057b69a7403fca0c253c3aaca95b1a5"
dependencies:
- "@webassemblyjs/wast-printer" "1.5.13"
+ "@webassemblyjs/wast-printer" "1.7.6"
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.5.13.tgz#cdf3d9d33005d543a5c5e5adaabf679ffa8db924"
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.6.tgz#ae1741c6f6121213c7a0b587fb964fac492d3e49"
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.5.13.tgz#dc29ddfb51ed657655286f94a5d72d8a489147c5"
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.6.tgz#116d19a51a6cebc8900ad53ca34ff8269c668c23"
dependencies:
- debug "^3.1.0"
mamacro "^0.0.3"
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.5.13.tgz#03245817f0a762382e61733146f5773def15a747"
-
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.5.13.tgz#efc76f44a10d3073b584b43c38a179df173d5c7d"
- dependencies:
- "@webassemblyjs/ast" "1.5.13"
- "@webassemblyjs/helper-buffer" "1.5.13"
- "@webassemblyjs/helper-wasm-bytecode" "1.5.13"
- "@webassemblyjs/wasm-gen" "1.5.13"
- debug "^3.1.0"
-
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.5.13.tgz#573e97c8c12e4eebb316ca5fde0203ddd90b0364"
- dependencies:
- ieee754 "^1.1.11"
-
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.5.13.tgz#ab52ebab9cec283c1c1897ac1da833a04a3f4cee"
- dependencies:
- long "4.0.0"
-
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.5.13.tgz#6b53d2cd861cf94fa99c1f12779dde692fbc2469"
-
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.5.13.tgz#c9cef5664c245cf11b3b3a73110c9155831724a8"
- dependencies:
- "@webassemblyjs/ast" "1.5.13"
- "@webassemblyjs/helper-buffer" "1.5.13"
- "@webassemblyjs/helper-wasm-bytecode" "1.5.13"
- "@webassemblyjs/helper-wasm-section" "1.5.13"
- "@webassemblyjs/wasm-gen" "1.5.13"
- "@webassemblyjs/wasm-opt" "1.5.13"
- "@webassemblyjs/wasm-parser" "1.5.13"
- "@webassemblyjs/wast-printer" "1.5.13"
- debug "^3.1.0"
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.6.tgz#98e515eaee611aa6834eb5f6a7f8f5b29fefb6f1"
+
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.6.tgz#783835867bdd686df7a95377ab64f51a275e8333"
+ dependencies:
+ "@webassemblyjs/ast" "1.7.6"
+ "@webassemblyjs/helper-buffer" "1.7.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.7.6"
+ "@webassemblyjs/wasm-gen" "1.7.6"
+
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.7.6.tgz#c34fc058f2f831fae0632a8bb9803cf2d3462eb1"
+ dependencies:
+ "@xtuc/ieee754" "^1.2.0"
+
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.7.6.tgz#197f75376a29f6ed6ace15898a310d871d92f03b"
+ dependencies:
+ "@xtuc/long" "4.2.1"
+
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.7.6.tgz#eb62c66f906af2be70de0302e29055d25188797d"
+
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.6.tgz#fa41929160cd7d676d4c28ecef420eed5b3733c5"
+ dependencies:
+ "@webassemblyjs/ast" "1.7.6"
+ "@webassemblyjs/helper-buffer" "1.7.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.7.6"
+ "@webassemblyjs/helper-wasm-section" "1.7.6"
+ "@webassemblyjs/wasm-gen" "1.7.6"
+ "@webassemblyjs/wasm-opt" "1.7.6"
+ "@webassemblyjs/wasm-parser" "1.7.6"
+ "@webassemblyjs/wast-printer" "1.7.6"
+
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.6.tgz#695ac38861ab3d72bf763c8c75e5f087ffabc322"
+ dependencies:
+ "@webassemblyjs/ast" "1.7.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.7.6"
+ "@webassemblyjs/ieee754" "1.7.6"
+ "@webassemblyjs/leb128" "1.7.6"
+ "@webassemblyjs/utf8" "1.7.6"
+
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.6.tgz#fbafa78e27e1a75ab759a4b658ff3d50b4636c21"
+ dependencies:
+ "@webassemblyjs/ast" "1.7.6"
+ "@webassemblyjs/helper-buffer" "1.7.6"
+ "@webassemblyjs/wasm-gen" "1.7.6"
+ "@webassemblyjs/wasm-parser" "1.7.6"
+
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.6.tgz#84eafeeff405ad6f4c4b5777d6a28ae54eed51fe"
+ dependencies:
+ "@webassemblyjs/ast" "1.7.6"
+ "@webassemblyjs/helper-api-error" "1.7.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.7.6"
+ "@webassemblyjs/ieee754" "1.7.6"
+ "@webassemblyjs/leb128" "1.7.6"
+ "@webassemblyjs/utf8" "1.7.6"
+
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.7.6.tgz#ca4d20b1516e017c91981773bd7e819d6bd9c6a7"
+ dependencies:
+ "@webassemblyjs/ast" "1.7.6"
+ "@webassemblyjs/floating-point-hex-parser" "1.7.6"
+ "@webassemblyjs/helper-api-error" "1.7.6"
+ "@webassemblyjs/helper-code-frame" "1.7.6"
+ "@webassemblyjs/helper-fsm" "1.7.6"
+ "@xtuc/long" "4.2.1"
+ mamacro "^0.0.3"
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.5.13.tgz#8e6ea113c4b432fa66540189e79b16d7a140700e"
+"@webassemblyjs/[email protected]":
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.7.6.tgz#a6002c526ac5fa230fe2c6d2f1bdbf4aead43a5e"
dependencies:
- "@webassemblyjs/ast" "1.5.13"
- "@webassemblyjs/helper-wasm-bytecode" "1.5.13"
- "@webassemblyjs/ieee754" "1.5.13"
- "@webassemblyjs/leb128" "1.5.13"
- "@webassemblyjs/utf8" "1.5.13"
+ "@webassemblyjs/ast" "1.7.6"
+ "@webassemblyjs/wast-parser" "1.7.6"
+ "@xtuc/long" "4.2.1"
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.5.13.tgz#147aad7717a7ee4211c36b21a5f4c30dddf33138"
- dependencies:
- "@webassemblyjs/ast" "1.5.13"
- "@webassemblyjs/helper-buffer" "1.5.13"
- "@webassemblyjs/wasm-gen" "1.5.13"
- "@webassemblyjs/wasm-parser" "1.5.13"
- debug "^3.1.0"
-
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.5.13.tgz#6f46516c5bb23904fbdf58009233c2dd8a54c72f"
- dependencies:
- "@webassemblyjs/ast" "1.5.13"
- "@webassemblyjs/helper-api-error" "1.5.13"
- "@webassemblyjs/helper-wasm-bytecode" "1.5.13"
- "@webassemblyjs/ieee754" "1.5.13"
- "@webassemblyjs/leb128" "1.5.13"
- "@webassemblyjs/utf8" "1.5.13"
-
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.5.13.tgz#5727a705d397ae6a3ae99d7f5460acf2ec646eea"
- dependencies:
- "@webassemblyjs/ast" "1.5.13"
- "@webassemblyjs/floating-point-hex-parser" "1.5.13"
- "@webassemblyjs/helper-api-error" "1.5.13"
- "@webassemblyjs/helper-code-frame" "1.5.13"
- "@webassemblyjs/helper-fsm" "1.5.13"
- long "^3.2.0"
- mamacro "^0.0.3"
+"@xtuc/ieee754@^1.2.0":
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
-"@webassemblyjs/[email protected]":
- version "1.5.13"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.5.13.tgz#bb34d528c14b4f579e7ec11e793ec50ad7cd7c95"
- dependencies:
- "@webassemblyjs/ast" "1.5.13"
- "@webassemblyjs/wast-parser" "1.5.13"
- long "^3.2.0"
+"@xtuc/[email protected]":
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.1.tgz#5c85d662f76fa1d34575766c5dcd6615abcd30d8"
JSONStream@^1.0.4:
version "1.3.4"
@@ -2384,7 +2385,7 @@ dns-txt@^2.0.2:
dom-converter@~0.1:
version "0.1.4"
- resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b"
+ resolved "http://registry.npmjs.org/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b"
dependencies:
utila "~0.3"
@@ -3684,7 +3685,7 @@ iconv-lite@^0.4.24, iconv-lite@^0.4.4:
dependencies:
safer-buffer ">= 2.1.2 < 3"
-ieee754@^1.1.11, ieee754@^1.1.4:
+ieee754@^1.1.4:
version "1.1.12"
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b"
@@ -3730,13 +3731,6 @@ import-lazy@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43"
-import-local@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc"
- dependencies:
- pkg-dir "^2.0.0"
- resolve-cwd "^2.0.0"
-
import-local@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
@@ -4692,10 +4686,14 @@ lodash.templatesettings@^4.0.0:
dependencies:
lodash._reinterpolate "~3.0.0"
-lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.1, lodash@^4.5.0, lodash@~4.17.10:
+lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.1, lodash@^4.5.0, lodash@~4.17.10:
version "4.17.10"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
+lodash@^4.17.3:
+ version "4.17.11"
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
+
log4js@^3.0.0:
version "3.0.5"
resolved "https://registry.yarnpkg.com/log4js/-/log4js-3.0.5.tgz#b80146bfebad68b430d4f3569556d8a6edfef303"
@@ -4720,11 +4718,7 @@ loglevel@^1.4.1:
version "1.6.1"
resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.1.tgz#e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa"
[email protected]:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28"
-
-long@^3.2.0, long@~3:
+long@~3:
version "3.2.0"
resolved "https://registry.yarnpkg.com/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b"
@@ -4833,12 +4827,6 @@ [email protected]:
version "0.3.0"
resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
-mem@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
- dependencies:
- mimic-fn "^1.0.0"
-
mem@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/mem/-/mem-4.0.0.tgz#6437690d9471678f6cc83659c00cbafcd6b0cdaf"
@@ -4970,9 +4958,9 @@ mimic-response@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
[email protected]:
- version "0.4.2"
- resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.4.2.tgz#b3ecc0d6b1bbe5ff14add42b946a7b200cf78651"
[email protected]:
+ version "0.4.3"
+ resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.4.3.tgz#98d60fcc5d228c3e36a9bd15a1d6816d6580beb8"
dependencies:
loader-utils "^1.1.0"
schema-utils "^1.0.0"
@@ -5544,14 +5532,6 @@ os-locale@^1.4.0:
dependencies:
lcid "^1.0.0"
-os-locale@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
- dependencies:
- execa "^0.7.0"
- lcid "^1.0.0"
- mem "^1.1.0"
-
os-locale@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.0.1.tgz#3b014fbf01d87f60a1e5348d80fe870dc82c4620"
@@ -6270,7 +6250,7 @@ read-pkg@^3.0.0:
[email protected]:
version "1.0.34"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c"
+ resolved "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c"
dependencies:
core-util-is "~1.0.0"
inherits "~2.0.1"
@@ -7388,6 +7368,10 @@ tapable@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.0.0.tgz#cbb639d9002eed9c6b5975eb20598d7936f1f9f2"
+tapable@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.0.tgz#0d076a172e3d9ba088fd2272b2668fb8d194b78c"
+
tar@^2.0.0:
version "2.2.1"
resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
@@ -7421,9 +7405,9 @@ term-size@^1.2.0:
dependencies:
execa "^0.7.0"
[email protected]:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.0.2.tgz#b62dfdc4e59b0b5093665a765b234645b598d1a5"
[email protected]:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.1.0.tgz#cf7c25a1eee25bf121f4a587bb9e004e3f80e528"
dependencies:
cacache "^11.0.2"
find-cache-dir "^2.0.0"
@@ -7996,40 +7980,18 @@ [email protected]:
url-join "^4.0.0"
webpack-log "^2.0.0"
[email protected]:
- version "3.1.7"
- resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.1.7.tgz#cbf8071cc092d9493732aee4f062f0e065994854"
[email protected]:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.3.0.tgz#8104daf4d4f65defe06ee2eaaeea612a7c541462"
dependencies:
- ansi-html "0.0.7"
- bonjour "^3.5.0"
- chokidar "^2.0.0"
- compression "^1.5.2"
- connect-history-api-fallback "^1.3.0"
- debug "^3.1.0"
- del "^3.0.0"
- express "^4.16.2"
- html-entities "^1.2.0"
- http-proxy-middleware "~0.18.0"
- import-local "^1.0.0"
- internal-ip "^3.0.1"
- ip "^1.1.5"
- killable "^1.0.0"
- loglevel "^1.4.1"
- opn "^5.1.0"
- portfinder "^1.0.9"
- schema-utils "^1.0.0"
- selfsigned "^1.9.1"
- serve-index "^1.7.2"
- sockjs "0.3.19"
- sockjs-client "1.1.5"
- spdy "^3.4.1"
- strip-ansi "^3.0.0"
- supports-color "^5.1.0"
- webpack-dev-middleware "3.2.0"
+ loud-rejection "^1.6.0"
+ memory-fs "~0.4.1"
+ mime "^2.3.1"
+ range-parser "^1.0.3"
+ url-join "^4.0.0"
webpack-log "^2.0.0"
- yargs "12.0.1"
-webpack-dev-server@^3.1.4:
[email protected], webpack-dev-server@^3.1.4:
version "3.1.8"
resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.1.8.tgz#eb7a95945d1108170f902604fb3b939533d9daeb"
dependencies:
@@ -8082,21 +8044,20 @@ [email protected], webpack-sources@^1.1.0, webpack-sources@^1.2.0:
source-list-map "^2.0.0"
source-map "~0.6.1"
[email protected]:
- version "1.1.0-rc.4"
- resolved "https://registry.yarnpkg.com/webpack-subresource-integrity/-/webpack-subresource-integrity-1.1.0-rc.4.tgz#c5c4e3d690f9d2f64a9550e07a8767f9796aa5d8"
[email protected]:
+ version "1.1.0-rc.6"
+ resolved "https://registry.yarnpkg.com/webpack-subresource-integrity/-/webpack-subresource-integrity-1.1.0-rc.6.tgz#37f6f1264e1eb378e41465a98da80fad76ab8886"
dependencies:
webpack-core "^0.6.8"
[email protected], webpack@^4.0.0, webpack@^4.6.0:
- version "4.17.2"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.17.2.tgz#49feb20205bd15f0a5f1fe0a12097d5d9931878d"
[email protected], webpack@^4.0.0, webpack@^4.6.0:
+ version "4.19.1"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.19.1.tgz#096674bc3b573f8756c762754366e5b333d6576f"
dependencies:
- "@webassemblyjs/ast" "1.5.13"
- "@webassemblyjs/helper-module-context" "1.5.13"
- "@webassemblyjs/wasm-edit" "1.5.13"
- "@webassemblyjs/wasm-opt" "1.5.13"
- "@webassemblyjs/wasm-parser" "1.5.13"
+ "@webassemblyjs/ast" "1.7.6"
+ "@webassemblyjs/helper-module-context" "1.7.6"
+ "@webassemblyjs/wasm-edit" "1.7.6"
+ "@webassemblyjs/wasm-parser" "1.7.6"
acorn "^5.6.2"
acorn-dynamic-import "^3.0.0"
ajv "^6.1.0"
@@ -8113,7 +8074,7 @@ [email protected], webpack@^4.0.0, webpack@^4.6.0:
neo-async "^2.5.0"
node-libs-browser "^2.0.0"
schema-utils "^0.4.4"
- tapable "^1.0.0"
+ tapable "^1.1.0"
uglifyjs-webpack-plugin "^1.2.4"
watchpack "^1.5.0"
webpack-sources "^1.2.0"
@@ -8290,23 +8251,6 @@ yargs-parser@^5.0.0:
dependencies:
camelcase "^3.0.0"
[email protected]:
- version "12.0.1"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.1.tgz#6432e56123bb4e7c3562115401e98374060261c2"
- dependencies:
- cliui "^4.0.0"
- decamelize "^2.0.0"
- find-up "^3.0.0"
- get-caller-file "^1.0.1"
- os-locale "^2.0.0"
- require-directory "^2.1.1"
- require-main-filename "^1.0.1"
- set-blocking "^2.0.0"
- string-width "^2.0.0"
- which-module "^2.0.0"
- y18n "^3.2.1 || ^4.0.0"
- yargs-parser "^10.1.0"
-
[email protected]:
version "12.0.2"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.2.tgz#fe58234369392af33ecbef53819171eff0f5aadc"
|
1dbcd8dccd05de377d02bd75ba2464434a2e7212
|
2020-02-15 02:11:13
|
Renovate Bot
|
build: update rollup to version 1.31.1
| false
|
update rollup to version 1.31.1
|
build
|
diff --git a/packages/angular_devkit/build_angular/package.json b/packages/angular_devkit/build_angular/package.json
index 14de8c8b5c2e..9b8616a972cc 100644
--- a/packages/angular_devkit/build_angular/package.json
+++ b/packages/angular_devkit/build_angular/package.json
@@ -46,7 +46,7 @@
"raw-loader": "4.0.0",
"regenerator-runtime": "0.13.3",
"rimraf": "3.0.2",
- "rollup": "1.31.0",
+ "rollup": "1.31.1",
"rxjs": "6.5.4",
"sass": "1.25.0",
"sass-loader": "8.0.2",
diff --git a/yarn.lock b/yarn.lock
index aa87e0244ff2..a88a11b1c291 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -9758,6 +9758,15 @@ [email protected]:
"@types/node" "*"
acorn "^7.1.0"
[email protected]:
+ version "1.31.1"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.31.1.tgz#4170d6f87148d46e5fbe29b493f8f3ea3453c96f"
+ integrity sha512-2JREN1YdrS/kpPzEd33ZjtuNbOuBC3ePfuZBdKEybvqcEcszW1ckyVqzcEiEe0nE8sqHK+pbJg+PsAgRJ8+1dg==
+ dependencies:
+ "@types/estree" "*"
+ "@types/node" "*"
+ acorn "^7.1.0"
+
run-async@^2.2.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
|
de2b549a927df69261ad5c1860589b87be5d6591
|
2022-08-30 00:18:02
|
Angular Robot
|
build: update dependency typescript to v4.8.2
| false
|
update dependency typescript to v4.8.2
|
build
|
diff --git a/package.json b/package.json
index 467a5f54ab2e..90c01b967eb1 100644
--- a/package.json
+++ b/package.json
@@ -214,7 +214,7 @@
"tree-kill": "1.2.2",
"ts-node": "^10.0.0",
"tslib": "2.4.0",
- "typescript": "4.8.1-rc",
+ "typescript": "4.8.2",
"verdaccio": "5.14.0",
"verdaccio-auth-memory": "^10.0.0",
"webpack": "5.74.0",
diff --git a/packages/ngtools/webpack/package.json b/packages/ngtools/webpack/package.json
index 53b5f87ef462..e91352ea9e02 100644
--- a/packages/ngtools/webpack/package.json
+++ b/packages/ngtools/webpack/package.json
@@ -30,7 +30,7 @@
"@angular-devkit/core": "0.0.0-PLACEHOLDER",
"@angular/compiler": "14.1.3",
"@angular/compiler-cli": "14.1.3",
- "typescript": "4.8.1-rc",
+ "typescript": "4.8.2",
"webpack": "5.74.0"
}
}
diff --git a/yarn.lock b/yarn.lock
index bc4ed4b1b84a..72895aae4b41 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -10582,10 +10582,10 @@ typedarray@^0.0.6:
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
[email protected]:
- version "4.8.1-rc"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.1-rc.tgz#2baff2b14b916f06a97effbfcf59e46bab93e48a"
- integrity sha512-ZoXadPUeEe1XOZe6CHG/QHZ6IFeRjrfzkpraRi9HOpGH0UOG/WaUrKvtSwDFigG8GuDA4zsDQHEZyqhmlCIyEw==
[email protected]:
+ version "4.8.2"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.2.tgz#e3b33d5ccfb5914e4eeab6699cf208adee3fd790"
+ integrity sha512-C0I1UsrrDHo2fYI5oaCGbSejwX4ch+9Y5jTQELvovfmFkK3HHSZJB8MSJcWLmCUBzQBchCrZ9rMRV6GuNrvGtw==
typescript@^4.6.2:
version "4.8.2"
|
c41173440a6aa6b50838335ee2ab3a0b95134880
|
2018-01-18 23:21:05
|
britvik
|
fix(@angular/cli): Fixed lint not excluding files when project folder name started with a dot
| false
|
Fixed lint not excluding files when project folder name started with a dot
|
fix
|
diff --git a/packages/@angular/cli/tasks/lint.ts b/packages/@angular/cli/tasks/lint.ts
index 576a2d49d035..4b747ac72bdb 100644
--- a/packages/@angular/cli/tasks/lint.ts
+++ b/packages/@angular/cli/tasks/lint.ts
@@ -177,7 +177,7 @@ function getFilesToLint(
let programFiles = linter.getFileNames(program);
if (ignore && ignore.length > 0) {
- const ignoreMatchers = ignore.map(pattern => new Minimatch(pattern));
+ const ignoreMatchers = ignore.map(pattern => new Minimatch(pattern, { dot: true }));
programFiles = programFiles
.filter(file => !ignoreMatchers.some(matcher => matcher.match(file)));
|
858fa971af1b0d813e99d8bf9404d7157721b36c
|
2018-04-11 06:07:40
|
Hans
|
fix(@angular/cli): dont show Nothing to be done on update
| false
|
dont show Nothing to be done on update
|
fix
|
diff --git a/packages/@angular/cli/commands/update.ts b/packages/@angular/cli/commands/update.ts
index 4728b09fd0ce..5486e3a3ed0d 100644
--- a/packages/@angular/cli/commands/update.ts
+++ b/packages/@angular/cli/commands/update.ts
@@ -39,16 +39,13 @@ export default class UpdateCommand extends SchematicCommand {
}
public async run(options: UpdateOptions) {
-
- const schematicRunOptions = {
+ return this.runSchematic({
collectionName: this.collectionName,
schematicName: this.schematicName,
schematicOptions: options,
dryRun: options.dryRun,
force: false,
- workingDir: this.project.root,
- };
-
- return this.runSchematic(schematicRunOptions);
+ showNothingDone: false,
+ });
}
}
diff --git a/packages/@angular/cli/models/schematic-command.ts b/packages/@angular/cli/models/schematic-command.ts
index 469a05bc4559..cf968e64113e 100644
--- a/packages/@angular/cli/models/schematic-command.ts
+++ b/packages/@angular/cli/models/schematic-command.ts
@@ -21,6 +21,7 @@ export interface RunSchematicOptions {
debug?: boolean;
dryRun: boolean;
force: boolean;
+ showNothingDone?: boolean;
}
export interface GetOptionsOptions {
@@ -170,7 +171,8 @@ export abstract class SchematicCommand extends Command {
// Output the logging queue, no error happened.
loggingQueue.forEach(log => this.logger.info(log));
- if (nothingDone) {
+ const showNothingDone = !(options.showNothingDone === false);
+ if (nothingDone && showNothingDone) {
this.logger.info('Nothing to be done.');
}
if (dryRun) {
|
7f27908a7ebfb77f38352a090a891cd4572bfa71
|
2022-10-03 20:12:08
|
Charles Lyding
|
refactor(@angular-devkit/build-angular): centralize babel transformation in esbuild-based builder
| false
|
centralize babel transformation in esbuild-based builder
|
refactor
|
diff --git a/packages/angular_devkit/build_angular/src/builders/browser-esbuild/compiler-plugin.ts b/packages/angular_devkit/build_angular/src/builders/browser-esbuild/compiler-plugin.ts
index 59202089ea47..477d6bf0219e 100644
--- a/packages/angular_devkit/build_angular/src/builders/browser-esbuild/compiler-plugin.ts
+++ b/packages/angular_devkit/build_angular/src/builders/browser-esbuild/compiler-plugin.ts
@@ -37,7 +37,7 @@ type FileEmitter = (file: string) => Promise<EmitFileResult | undefined>;
* Converts TypeScript Diagnostic related information into an esbuild compatible note object.
* Related information is a subset of a full TypeScript Diagnostic and also used for diagnostic
* notes associated with the main Diagnostic.
- * @param diagnostic The TypeScript diagnostic relative information to convert.
+ * @param info The TypeScript diagnostic relative information to convert.
* @param host A TypeScript FormatDiagnosticsHost instance to use during conversion.
* @returns An esbuild diagnostic message as a PartialMessage object
*/
@@ -120,16 +120,18 @@ function convertTypeScriptDiagnostic(
return message;
}
+export interface CompilerPluginOptions {
+ sourcemap: boolean;
+ tsconfig: string;
+ advancedOptimizations?: boolean;
+ thirdPartySourcemaps?: boolean;
+ fileReplacements?: Record<string, string>;
+}
+
// This is a non-watch version of the compiler code from `@ngtools/webpack` augmented for esbuild
// eslint-disable-next-line max-lines-per-function
export function createCompilerPlugin(
- pluginOptions: {
- sourcemap: boolean;
- tsconfig: string;
- advancedOptimizations?: boolean;
- thirdPartySourcemaps?: boolean;
- fileReplacements?: Record<string, string>;
- },
+ pluginOptions: CompilerPluginOptions,
styleOptions: BundleStylesheetOptions,
): Plugin {
return {
@@ -335,8 +337,7 @@ export function createCompilerPlugin(
return {
errors: [
{
- text: 'File is missing from the TypeScript compilation.',
- location: { file: args.path },
+ text: `File '${args.path}' is missing from the TypeScript compilation.`,
notes: [
{
text: `Ensure the file is part of the TypeScript program via the 'files' or 'include' property.`,
@@ -347,45 +348,12 @@ export function createCompilerPlugin(
};
}
- const data = typescriptResult.content ?? '';
- const forceAsyncTransformation = /async\s+function\s*\*/.test(data);
- const useInputSourcemap =
- pluginOptions.sourcemap &&
- (!!pluginOptions.thirdPartySourcemaps || !/[\\/]node_modules[\\/]/.test(args.path));
-
- // If no additional transformations are needed, return the TypeScript output directly
- if (!forceAsyncTransformation && !pluginOptions.advancedOptimizations) {
- return {
- // Strip sourcemaps if they should not be used
- contents: useInputSourcemap
- ? data
- : data.replace(/^\/\/# sourceMappingURL=[^\r\n]*/gm, ''),
- loader: 'js',
- };
- }
-
- const babelResult = await transformAsync(data, {
- filename: args.path,
- inputSourceMap: (useInputSourcemap ? undefined : false) as undefined,
- sourceMaps: pluginOptions.sourcemap ? 'inline' : false,
- compact: false,
- configFile: false,
- babelrc: false,
- browserslistConfigFile: false,
- plugins: [],
- presets: [
- [
- angularApplicationPreset,
- {
- forceAsyncTransformation,
- optimize: pluginOptions.advancedOptimizations && {},
- },
- ],
- ],
- });
-
return {
- contents: babelResult?.code ?? '',
+ contents: await transformWithBabel(
+ args.path,
+ typescriptResult.content ?? '',
+ pluginOptions,
+ ),
loader: 'js',
};
},
@@ -393,62 +361,9 @@ export function createCompilerPlugin(
build.onLoad({ filter: /\.[cm]?js$/ }, async (args) => {
const data = await fs.readFile(args.path, 'utf-8');
- const forceAsyncTransformation =
- !/[\\/][_f]?esm2015[\\/]/.test(args.path) && /async\s+function\s*\*/.test(data);
- const shouldLink = await requiresLinking(args.path, data);
- const useInputSourcemap =
- pluginOptions.sourcemap &&
- (!!pluginOptions.thirdPartySourcemaps || !/[\\/]node_modules[\\/]/.test(args.path));
-
- // If no additional transformations are needed, return the TypeScript output directly
- if (!forceAsyncTransformation && !pluginOptions.advancedOptimizations && !shouldLink) {
- return {
- // Strip sourcemaps if they should not be used
- contents: useInputSourcemap
- ? data
- : data.replace(/^\/\/# sourceMappingURL=[^\r\n]*/gm, ''),
- loader: 'js',
- };
- }
-
- const angularPackage = /[\\/]node_modules[\\/]@angular[\\/]/.test(args.path);
-
- const linkerPluginCreator = (
- await loadEsmModule<typeof import('@angular/compiler-cli/linker/babel')>(
- '@angular/compiler-cli/linker/babel',
- )
- ).createEs2015LinkerPlugin;
-
- const result = await transformAsync(data, {
- filename: args.path,
- inputSourceMap: (useInputSourcemap ? undefined : false) as undefined,
- sourceMaps: pluginOptions.sourcemap ? 'inline' : false,
- compact: false,
- configFile: false,
- babelrc: false,
- browserslistConfigFile: false,
- plugins: [],
- presets: [
- [
- angularApplicationPreset,
- {
- angularLinker: {
- shouldLink,
- jitMode: false,
- linkerPluginCreator,
- },
- forceAsyncTransformation,
- optimize: pluginOptions.advancedOptimizations && {
- looseEnums: angularPackage,
- pureTopLevel: angularPackage,
- },
- },
- ],
- ],
- });
return {
- contents: result?.code ?? data,
+ contents: await transformWithBabel(args.path, data, pluginOptions),
loader: 'js',
};
});
@@ -491,3 +406,62 @@ function createFileEmitter(
return { content, dependencies: [] };
};
}
+
+async function transformWithBabel(
+ filename: string,
+ data: string,
+ pluginOptions: CompilerPluginOptions,
+): Promise<string> {
+ const forceAsyncTransformation =
+ !/[\\/][_f]?esm2015[\\/]/.test(filename) && /async\s+function\s*\*/.test(data);
+ const shouldLink = await requiresLinking(filename, data);
+ const useInputSourcemap =
+ pluginOptions.sourcemap &&
+ (!!pluginOptions.thirdPartySourcemaps || !/[\\/]node_modules[\\/]/.test(filename));
+
+ // If no additional transformations are needed, return the data directly
+ if (!forceAsyncTransformation && !pluginOptions.advancedOptimizations && !shouldLink) {
+ // Strip sourcemaps if they should not be used
+ return useInputSourcemap ? data : data.replace(/^\/\/# sourceMappingURL=[^\r\n]*/gm, '');
+ }
+
+ const angularPackage = /[\\/]node_modules[\\/]@angular[\\/]/.test(filename);
+
+ const linkerPluginCreator = shouldLink
+ ? (
+ await loadEsmModule<typeof import('@angular/compiler-cli/linker/babel')>(
+ '@angular/compiler-cli/linker/babel',
+ )
+ ).createEs2015LinkerPlugin
+ : undefined;
+
+ const result = await transformAsync(data, {
+ filename,
+ inputSourceMap: (useInputSourcemap ? undefined : false) as undefined,
+ sourceMaps: pluginOptions.sourcemap ? 'inline' : false,
+ compact: false,
+ configFile: false,
+ babelrc: false,
+ browserslistConfigFile: false,
+ plugins: [],
+ presets: [
+ [
+ angularApplicationPreset,
+ {
+ angularLinker: {
+ shouldLink,
+ jitMode: false,
+ linkerPluginCreator,
+ },
+ forceAsyncTransformation,
+ optimize: pluginOptions.advancedOptimizations && {
+ looseEnums: angularPackage,
+ pureTopLevel: angularPackage,
+ },
+ },
+ ],
+ ],
+ });
+
+ return result?.code ?? data;
+}
|
e2f92ab957e797d8085616fcdea0b73344e614af
|
2023-12-02 07:27:57
|
Alan Agius
|
fix(@schematics/angular): enable TypeScript `skipLibCheck` in new workspace
| false
|
enable TypeScript `skipLibCheck` in new workspace
|
fix
|
diff --git a/packages/schematics/angular/workspace/files/tsconfig.json.template b/packages/schematics/angular/workspace/files/tsconfig.json.template
index 251d6bcb1e5a..f5dde42b401c 100644
--- a/packages/schematics/angular/workspace/files/tsconfig.json.template
+++ b/packages/schematics/angular/workspace/files/tsconfig.json.template
@@ -9,6 +9,7 @@
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,<% } %>
+ "skipLibCheck": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
|
c262c7229fbff74fb7619620709b63bd671d22c1
|
2020-06-26 17:47:20
|
Alan Agius
|
build: update lock file and @types/node resolutions
| false
|
update lock file and @types/node resolutions
|
build
|
diff --git a/package.json b/package.json
index 59f774f960e7..30fbd179f666 100644
--- a/package.json
+++ b/package.json
@@ -39,7 +39,7 @@
"resolutions": {
"@types/hapi__boom": "7.4.1",
"@types/hapi__iron": "5.1.0",
- "@types/node": "^12.11.1"
+ "@types/node": "12.12.37"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1000.0",
@@ -71,7 +71,7 @@
"@types/hapi__hapi": "^19.0.0",
"@types/hapi__inert": "^5.2.0",
"@types/jasmine": "^3.4.4",
- "@types/node": "12.11.1",
+ "@types/node": "12.12.37",
"@types/shelljs": "^0.8.6",
"browser-sync": "^2.26.7",
"domino": "^2.1.2",
diff --git a/yarn.lock b/yarn.lock
index 6fe25835aad3..b23f9126b972 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1726,16 +1726,11 @@
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d"
integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==
-"@types/node@*", "@types/[email protected]", "@types/node@^10.1.0", "@types/node@^12.11.1", "@types/node@^13.7.7":
+"@types/node@*", "@types/[email protected]", "@types/[email protected]", "@types/node@^10.1.0", "@types/node@^13.7.7":
version "12.12.37"
resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.37.tgz#cb4782d847f801fa58316da5b4801ca3a59ae790"
integrity sha512-4mXKoDptrXAwZErQHrLzpe0FN/0Wmf5JRniSVIdwUrtDf9wnmEV1teCNLBo/TwuXhkK/bVegoEn/wmb+x0AuPg==
-"@types/[email protected]":
- version "12.11.1"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-12.11.1.tgz#1fd7b821f798b7fa29f667a1be8f3442bb8922a3"
- integrity sha512-TJtwsqZ39pqcljJpajeoofYRfeZ7/I/OMUQ5pR4q5wOKf2ocrUvBAZUMhWsOvKx3dVc/aaV5GluBivt0sWqA5A==
-
"@types/object-path@^0.11.0":
version "0.11.0"
resolved "https://registry.yarnpkg.com/@types/object-path/-/object-path-0.11.0.tgz#0b744309b2573dc8bf867ef589b6288be998e602"
@@ -1762,9 +1757,9 @@
integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==
"@types/qs@*":
- version "6.9.1"
- resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.1.tgz#937fab3194766256ee09fcd40b781740758617e7"
- integrity sha512-lhbQXx9HKZAPgBkISrBcmAcMpZsmpe/Cd/hY7LGZS5OfkySUBItnPZHgQPssWYUET8elF+yCFBbP1Q0RZPTdaw==
+ version "6.9.3"
+ resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.3.tgz#b755a0934564a200d3efdf88546ec93c369abd03"
+ integrity sha512-7s9EQWupR1fTc2pSMtXRQ9w9gLOcrJn+h7HOXw4evxyvVqMi4f+q7d2tnFe3ng3SNHjtK+0EzGMGFUQX4/AQRA==
"@types/range-parser@*":
version "1.2.3"
|
13bf1c5e9b2855f4bad1930cda43caa12a9614a6
|
2019-01-22 23:09:30
|
Renovate Bot
|
build: update autoprefixer to version 9.4.6
| false
|
update autoprefixer to version 9.4.6
|
build
|
diff --git a/packages/angular_devkit/build_angular/package.json b/packages/angular_devkit/build_angular/package.json
index 7323e43cf8bf..05da0f8ab95c 100644
--- a/packages/angular_devkit/build_angular/package.json
+++ b/packages/angular_devkit/build_angular/package.json
@@ -12,7 +12,7 @@
"@angular-devkit/core": "0.0.0",
"@ngtools/webpack": "0.0.0",
"ajv": "6.7.0",
- "autoprefixer": "9.4.5",
+ "autoprefixer": "9.4.6",
"circular-dependency-plugin": "5.0.2",
"clean-css": "4.2.1",
"copy-webpack-plugin": "4.6.0",
diff --git a/yarn.lock b/yarn.lock
index 109206e9e181..dcff00a29456 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1185,16 +1185,16 @@ atob@^2.1.1:
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
[email protected]:
- version "9.4.5"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.4.5.tgz#a13ccb001e4bc8837f71c3354005b42f02cc03d7"
- integrity sha512-M602C0ZxzFpJKqD4V6eq2j+K5CkzlhekCrcQupJmAOrPEZjWJyj/wSeo6qRSNoN6M3/9mtLPQqTTrABfReytQg==
[email protected]:
+ version "9.4.6"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.4.6.tgz#0ace275e33b37de16b09a5547dbfe73a98c1d446"
+ integrity sha512-Yp51mevbOEdxDUy5WjiKtpQaecqYq9OqZSL04rSoCiry7Tc5I9FEyo3bfxiTJc1DfHeKwSFCUYbBAiOQ2VGfiw==
dependencies:
- browserslist "^4.4.0"
- caniuse-lite "^1.0.30000928"
+ browserslist "^4.4.1"
+ caniuse-lite "^1.0.30000929"
normalize-range "^0.1.2"
num2fraction "^1.2.2"
- postcss "^7.0.11"
+ postcss "^7.0.13"
postcss-value-parser "^3.3.1"
autoprefixer@^9.0.0:
@@ -1628,13 +1628,13 @@ browserslist@^4.0.0, browserslist@^4.3.3:
electron-to-chromium "^1.3.82"
node-releases "^1.0.1"
-browserslist@^4.4.0:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.4.0.tgz#7050d1412cbfc5274aba609ed5e50359ca1a5fdf"
- integrity sha512-tQkHS8VVxWbrjnNDXgt7/+SuPJ7qDvD0Y2e6bLtoQluR2SPvlmPUcfcU75L1KAalhqULlIFJlJ6BDfnYyJxJsw==
+browserslist@^4.4.1:
+ version "4.4.1"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.4.1.tgz#42e828954b6b29a7a53e352277be429478a69062"
+ integrity sha512-pEBxEXg7JwaakBXjATYw/D1YZh4QUSCX/Mnd/wnqSRPPSi1U39iDhDoKGoBUcraKdxDlrYqJxSI5nNvD+dWP2A==
dependencies:
- caniuse-lite "^1.0.30000928"
- electron-to-chromium "^1.3.100"
+ caniuse-lite "^1.0.30000929"
+ electron-to-chromium "^1.3.103"
node-releases "^1.1.3"
browserstack@^1.5.1:
@@ -1883,10 +1883,10 @@ caniuse-lite@^1.0.30000898, caniuse-lite@^1.0.30000899:
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000903.tgz#86d46227759279b3db345ddbe778335dbba9e858"
integrity sha512-T1XVJEpGCoaq7MDw7/6hCdYUukmSaS+1l/OQJkLtw7Cr2+/+d67tNGKEbyiqf7Ck8x6EhNFUxjYFXXka0N/w5g==
-caniuse-lite@^1.0.30000928:
- version "1.0.30000928"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000928.tgz#805e828dc72b06498e3683a32e61c7507fd67b88"
- integrity sha512-aSpMWRXL6ZXNnzm8hgE4QDLibG5pVJ2Ujzsuj3icazlIkxXkPXtL+BWnMx6FBkWmkZgBHGUxPZQvrbRw2ZTxhg==
+caniuse-lite@^1.0.30000929:
+ version "1.0.30000929"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000929.tgz#7b391b781a9c3097ecc39ea053301aea8ea16317"
+ integrity sha512-n2w1gPQSsYyorSVYqPMqbSaz1w7o9ZC8VhOEGI9T5MfGDzp7sbopQxG6GaQmYsaq13Xfx/mkxJUWC1Dz3oZfzw==
[email protected]:
version "1.0.0"
@@ -3147,10 +3147,10 @@ [email protected]:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
-electron-to-chromium@^1.3.100:
- version "1.3.102"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.102.tgz#3ac43a037c8a63bca3dfa189eb3d90f097196787"
- integrity sha512-2nzZuXw/KBPnI3QX3UOCSRvJiVy7o9+VHRDQ3D/EHCvVc89X6aj/GlNmEgiR2GBIhmSWXIi4W1M5okA5ScSlNg==
+electron-to-chromium@^1.3.103:
+ version "1.3.103"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.103.tgz#a695777efdbc419cad6cbb0e58458251302cd52f"
+ integrity sha512-tObPqGmY9X8MUM8i3MEimYmbnLLf05/QV5gPlkR8MQ3Uj8G8B2govE1U4cQcBYtv3ymck9Y8cIOu4waoiykMZQ==
electron-to-chromium@^1.3.82:
version "1.3.82"
@@ -7672,7 +7672,7 @@ postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.1:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
[email protected]:
[email protected], postcss@^7.0.13:
version "7.0.13"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.13.tgz#42bf716413e8f1c786ab71dc6e722b3671b16708"
integrity sha512-h8SY6kQTd1wISHWjz+E6cswdhMuyBZRb16pSTv3W4zYZ3/YbyWeJdNUeOXB5IdZqE1U76OUEjjjqsC3z2f3hVg==
@@ -7690,15 +7690,6 @@ postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.2, postcss@^7.0.5:
source-map "^0.6.1"
supports-color "^5.5.0"
-postcss@^7.0.11:
- version "7.0.11"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.11.tgz#f63c513b78026d66263bb2ca995bf02e3d1a697d"
- integrity sha512-9AXb//5UcjeOEof9T+yPw3XTa5SL207ZOIC/lHYP4mbUTEh4M0rDAQekQpVANCZdwQwKhBtFZCk3i3h3h2hdWg==
- dependencies:
- chalk "^2.4.2"
- source-map "^0.6.1"
- supports-color "^6.1.0"
-
prelude-ls@~1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
5f8230cca110b82d04342bafad0b738f90024504
|
2018-10-04 05:02:36
|
Alan Agius
|
fix(@angular-devkit/build-angular): `ng test` without `reporters` no longer print error
| false
|
`ng test` without `reporters` no longer print error
|
fix
|
diff --git a/packages/angular_devkit/build_angular/src/karma/index.ts b/packages/angular_devkit/build_angular/src/karma/index.ts
index 3d1b066d9f1b..8e41e89a7dc5 100644
--- a/packages/angular_devkit/build_angular/src/karma/index.ts
+++ b/packages/angular_devkit/build_angular/src/karma/index.ts
@@ -73,9 +73,13 @@ export class KarmaBuilder implements Builder<KarmaBuilderSchema> {
if (options.reporters) {
// Split along commas to make it more natural, and remove empty strings.
- karmaOptions.reporters = options.reporters
+ const reporters = options.reporters
.reduce<string[]>((acc, curr) => acc.concat(curr.split(/,/)), [])
.filter(x => !!x);
+
+ if (reporters.length > 0) {
+ karmaOptions.reporters = reporters;
+ }
}
const sourceRoot = builderConfig.sourceRoot && resolve(root, builderConfig.sourceRoot);
|
3784859d1347e96c3fd5d3edeaaa46eba2f3807b
|
2019-11-19 00:25:19
|
timdeschryver
|
fix(@schematics/angular): add new route before wildcard route
| false
|
add new route before wildcard route
|
fix
|
diff --git a/packages/schematics/angular/utility/ast-utils.ts b/packages/schematics/angular/utility/ast-utils.ts
index f00160fb8119..833979609609 100644
--- a/packages/schematics/angular/utility/ast-utils.ts
+++ b/packages/schematics/angular/utility/ast-utils.ts
@@ -649,20 +649,38 @@ export function addRouteDeclarationToModule(
routesArr = findNodes(routesVar, ts.SyntaxKind.ArrayLiteralExpression, 1)[0] as ts.ArrayLiteralExpression;
}
- const occurencesCount = routesArr.elements.length;
+ const occurrencesCount = routesArr.elements.length;
const text = routesArr.getFullText(source);
let route: string = routeLiteral;
- if (occurencesCount > 0) {
- const identation = text.match(/\r?\n(\r?)\s*/) || [];
- route = `,${identation[0] || ' '}${routeLiteral}`;
+ let insertPos = routesArr.elements.pos;
+
+ if (occurrencesCount > 0) {
+ const lastRouteLiteral = [...routesArr.elements].pop() as ts.Expression;
+ const lastRouteIsWildcard = ts.isObjectLiteralExpression(lastRouteLiteral)
+ && lastRouteLiteral
+ .properties
+ .some(n => (
+ ts.isPropertyAssignment(n)
+ && ts.isIdentifier(n.name)
+ && n.name.text === 'path'
+ && ts.isStringLiteral(n.initializer)
+ && n.initializer.text === '**'
+ ));
+
+ const indentation = text.match(/\r?\n(\r?)\s*/) || [];
+ const routeText = `${indentation[0] || ' '}${routeLiteral}`;
+
+ // Add the new route before the wildcard route
+ // otherwise we'll always redirect to the wildcard route
+ if (lastRouteIsWildcard) {
+ insertPos = lastRouteLiteral.pos;
+ route = `${routeText},`;
+ } else {
+ insertPos = lastRouteLiteral.end;
+ route = `,${routeText}`;
+ }
}
- return insertAfterLastOccurrence(
- routesArr.elements as unknown as ts.Node[],
- route,
- fileToAdd,
- routesArr.elements.pos,
- ts.SyntaxKind.ObjectLiteralExpression,
- );
+ return new InsertChange(fileToAdd, insertPos, route);
}
diff --git a/packages/schematics/angular/utility/ast-utils_spec.ts b/packages/schematics/angular/utility/ast-utils_spec.ts
index 6a03de30e2fe..2ff1db8cb801 100644
--- a/packages/schematics/angular/utility/ast-utils_spec.ts
+++ b/packages/schematics/angular/utility/ast-utils_spec.ts
@@ -440,6 +440,40 @@ describe('ast utils', () => {
);
});
+ it('should add a route before the last wildcard path', () => {
+ const moduleContent = `
+ import { BrowserModule } from '@angular/platform-browser';
+ import { NgModule } from '@angular/core';
+ import { AppComponent } from './app.component';
+ const routes = [
+ { path: '**', component: FooComponent }
+ ];
+ @NgModule({
+ declarations: [
+ AppComponent
+ ],
+ imports: [
+ BrowserModule,
+ RouterModule.forRoot(routes)
+ ],
+ bootstrap: [AppComponent]
+ })
+ export class AppModule { }
+ `;
+
+ const source = getTsSource(modulePath, moduleContent);
+ const changes = addRouteDeclarationToModule(
+ source,
+ './src/app',
+ `{ path: 'bar', component: BarComponent }`,
+ );
+ const output = applyChanges(modulePath, moduleContent, [changes]);
+
+ expect(output).toMatch(
+ /const routes = \[\r?\n?\s*{ path: 'bar', component: BarComponent },\r?\n?\s*{ path: '\*\*', component: FooComponent }\r?\n?\s*\]/,
+ );
+ });
+
it('should add a route to the routes to the correct array when having guards', () => {
const moduleContent = `
import { BrowserModule } from '@angular/platform-browser';
|
8fe5c2dbb488fb95efaf357bc14a4c85cf30d4b8
|
2020-10-26 23:00:47
|
Renovate Bot
|
build: update angular packages
| false
|
update angular packages
|
build
|
diff --git a/package.json b/package.json
index 43d2c8511a22..83490f8bfb46 100644
--- a/package.json
+++ b/package.json
@@ -70,7 +70,7 @@
"@angular/compiler": "11.0.0-rc.0",
"@angular/compiler-cli": "11.0.0-rc.0",
"@angular/core": "11.0.0-rc.0",
- "@angular/dev-infra-private": "https://github.com/angular/dev-infra-private-builds.git#bb9763f15077a4cb279ba0e210d337e2fde4be0e",
+ "@angular/dev-infra-private": "https://github.com/angular/dev-infra-private-builds.git#f920e544255f1f6b36507f525db9020b5f591295",
"@angular/forms": "11.0.0-rc.0",
"@angular/localize": "11.0.0-rc.0",
"@angular/material": "10.2.5",
diff --git a/tests/legacy-cli/e2e/ng-snapshot/package.json b/tests/legacy-cli/e2e/ng-snapshot/package.json
index 59602e70cd72..a1e48bfabb93 100644
--- a/tests/legacy-cli/e2e/ng-snapshot/package.json
+++ b/tests/legacy-cli/e2e/ng-snapshot/package.json
@@ -2,20 +2,20 @@
"description": "snapshot versions of Angular for e2e testing",
"private": true,
"dependencies": {
- "@angular/animations": "github:angular/animations-builds#4127ced1d5669f7308473a5967696e87cbdba0b4",
- "@angular/cdk": "github:angular/cdk-builds#4fe5782297f264586bf2d206f463f67c096ccede",
- "@angular/common": "github:angular/common-builds#7d0c55589c23f5c1ffe995d93e1b72ab54a8509b",
- "@angular/compiler": "github:angular/compiler-builds#79bd6c8935848afe9b1a8b87028bd5282aeb6cf2",
- "@angular/compiler-cli": "github:angular/compiler-cli-builds#2add501c424f6edd359fd1140df202c7a12c16c4",
- "@angular/core": "github:angular/core-builds#6a109163a36edace77b11e89bec39f65240adb78",
- "@angular/forms": "github:angular/forms-builds#2f7a013203a68f5cac177f585bc8b62956aa89bb",
- "@angular/language-service": "github:angular/language-service-builds#ddcdf9ce7d42888f95f3cbed54a8f8697bc8e545",
- "@angular/localize": "github:angular/localize-builds#529f58d2ad42ead0653db46f7d9dfaa965345be6",
- "@angular/material": "github:angular/material2-builds#7fb0b9eb55a5bd99ed35f20a6a6e9e8f8225462f",
- "@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#92c4c4e94af9130949325a68dd4fedb9b0a7830f",
- "@angular/platform-browser": "github:angular/platform-browser-builds#0780c2b7cf4d318a9ce9fda1400d2f813f7d61da",
- "@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#a6ae156d8c3c1ade0926308b2eb9046191c09ebe",
- "@angular/platform-server": "github:angular/platform-server-builds#c41341bc0cd969254ce69de1e2e8400e63e07770",
- "@angular/router": "github:angular/router-builds#936272a2162c70e104a130013cb0f5448e7f995b"
+ "@angular/animations": "github:angular/animations-builds#b69eda78281db63a24ebcf0402165f71f9b0e794",
+ "@angular/cdk": "github:angular/cdk-builds#d46a41aa4b6e21ef05eac20d12930dbfb5dc7e04",
+ "@angular/common": "github:angular/common-builds#ba6b83984e6d031c172cba8ad5cc29199dfefa78",
+ "@angular/compiler": "github:angular/compiler-builds#cea1be208aff651b5296341dcdf89966456e3e81",
+ "@angular/compiler-cli": "github:angular/compiler-cli-builds#1d80e10c2811572d9ce639905c8e59ed978d9d89",
+ "@angular/core": "github:angular/core-builds#a3a5896587a884390c3708405c0ec472e8cb506f",
+ "@angular/forms": "github:angular/forms-builds#c02929363f1b35daaeab3e5ee16522800292539b",
+ "@angular/language-service": "github:angular/language-service-builds#e12571604744f560aec044da8b2ff1313fb7aa5e",
+ "@angular/localize": "github:angular/localize-builds#676c6274df0efb79b6159701ac2d807bb289800e",
+ "@angular/material": "github:angular/material2-builds#b1f81c776449c9c2a84a07af5096f1adea1acb98",
+ "@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#cfa6e767eb0e7c327597ae0c03af2cd5c874bca4",
+ "@angular/platform-browser": "github:angular/platform-browser-builds#ecfc1103cd3070b750d7c55154d3341d5a68f4fd",
+ "@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#3d6778d47df776a5bdab8ee9b92db82954f3b82a",
+ "@angular/platform-server": "github:angular/platform-server-builds#545c60ce6dc1ff718ff142e6e4543b39a3842dca",
+ "@angular/router": "github:angular/router-builds#3caddd226cf30d22361db5d95b0c00a38350f187"
}
}
diff --git a/yarn.lock b/yarn.lock
index 85b10710a58a..8ed0ef6bcf1c 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -85,9 +85,9 @@
dependencies:
tslib "^2.0.0"
-"@angular/dev-infra-private@https://github.com/angular/dev-infra-private-builds.git#bb9763f15077a4cb279ba0e210d337e2fde4be0e":
+"@angular/dev-infra-private@https://github.com/angular/dev-infra-private-builds.git#f920e544255f1f6b36507f525db9020b5f591295":
version "0.0.0"
- resolved "https://github.com/angular/dev-infra-private-builds.git#bb9763f15077a4cb279ba0e210d337e2fde4be0e"
+ resolved "https://github.com/angular/dev-infra-private-builds.git#f920e544255f1f6b36507f525db9020b5f591295"
dependencies:
"@angular/benchpress" "0.2.1"
"@bazel/buildifier" "^0.29.0"
|
36ade0fd23a9ccf27312183d1d4412732c17431f
|
2020-02-11 22:16:19
|
RiccardoBracci
|
fix(@angular/cli): typo in error message
| false
|
typo in error message
|
fix
|
diff --git a/packages/angular/cli/bin/ng b/packages/angular/cli/bin/ng
index 3341c622caaf..cae16e5be8e2 100755
--- a/packages/angular/cli/bin/ng
+++ b/packages/angular/cli/bin/ng
@@ -17,7 +17,7 @@ try {
var version = process.versions.node.split('.').map(part => Number(part));
if (version[0] < 10 || version[0] === 11 || (version[0] === 10 && version[1] < 13)) {
process.stderr.write(
- 'Node.js version ' + process.verson + ' detected.\n' +
+ 'Node.js version ' + process.version + ' detected.\n' +
'The Angular CLI requires a minimum Node.js version of either v10.13 or v12.0.\n\n' +
'Please update your Node.js version or visit https://nodejs.org/ for additional instructions.\n',
);
|
e7d69f741b368d6dad524d351648589541821226
|
2023-10-05 05:16:24
|
Charles Lyding
|
release: cut the v17.0.0-next.7 release
| false
|
cut the v17.0.0-next.7 release
|
release
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9f10ccf86d74..027e622d0470 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,36 @@
+<a name="17.0.0-next.7"></a>
+
+# 17.0.0-next.7 (2023-10-04)
+
+### @schematics/angular
+
+| Commit | Type | Description |
+| --------------------------------------------------------------------------------------------------- | ---- | ---------------------------------------------------------- |
+| [dc6b6eaf6](https://github.com/angular/angular-cli/commit/dc6b6eaf6f8af0d2b3f31cea77dc9a63ff845e3c) | feat | add migration to replace usages of `@nguniversal/builders` |
+| [03a1eaf01](https://github.com/angular/angular-cli/commit/03a1eaf01c009d814cb476d2db53b2d0a4d58bcd) | fix | account for new block syntax in starter template |
+| [e516a4bdb](https://github.com/angular/angular-cli/commit/e516a4bdb7f6bb87f556e58557e57db6f7e65845) | fix | pass `ssr` option to application schematics |
+| [419b5c191](https://github.com/angular/angular-cli/commit/419b5c1917c45dc115b107479d5066b9193497fa) | fix | remove `baseUrl` from `tsconfig.json` |
+| [0368b23f2](https://github.com/angular/angular-cli/commit/0368b23f2e5d8ca9c6191a2db956dc6850daebfc) | fix | use @types/node v18 |
+
+### @angular-devkit/build-angular
+
+| Commit | Type | Description |
+| --------------------------------------------------------------------------------------------------- | ---- | -------------------------------------------------------------------------------------------------- |
+| [fd62a9315](https://github.com/angular/angular-cli/commit/fd62a9315defb89b4bea996d256887a6ec7b4327) | feat | support i18n with service worker and app-shell with esbuild builders |
+| [5898f72a9](https://github.com/angular/angular-cli/commit/5898f72a97c29d38b9e8b8ca23255f9fbce501e5) | feat | support namedChunks option in application builder |
+| [2d2e79921](https://github.com/angular/angular-cli/commit/2d2e79921a72c4fafad673abe501ba10400403d2) | fix | clean up internal Angular state during rendering SSR |
+| [83020fc32](https://github.com/angular/angular-cli/commit/83020fc3291715802c28c5f7dcf7a261bc7f32cd) | fix | clear diagnostic cache when external templates change with esbuild builders |
+| [26456b93d](https://github.com/angular/angular-cli/commit/26456b93d558f8cde012c3fa7b1f5a58c616615c) | fix | do not print `Angular is running in development mode.` in the server console when using dev-server |
+| [0c20cc4dc](https://github.com/angular/angular-cli/commit/0c20cc4dc5fe64221533d0a4cbe9d907881c85ae) | fix | re-add TestBed compileComponents in schematics to support defer block testing |
+
+### @angular/ssr
+
+| Commit | Type | Description |
+| --------------------------------------------------------------------------------------------------- | ---- | ------------------------------------------ |
+| [dcf3fddff](https://github.com/angular/angular-cli/commit/dcf3fddff2fa4cf3433c5d726be9f514ba41e827) | feat | add performance profiler to `CommonEngine` |
+
+<!-- CHANGELOG SPLIT MARKER -->
+
<a name="16.2.5"></a>
# 16.2.5 (2023-10-04)
diff --git a/package.json b/package.json
index b2d54873f84a..a9d53730f262 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@angular/devkit-repo",
- "version": "17.0.0-next.6",
+ "version": "17.0.0-next.7",
"private": true,
"description": "Software Development Kit for Angular",
"bin": {
|
ad910fca872c1f5465438acef0796fe7e0849a0a
|
2018-03-27 02:05:21
|
Charles Lyding
|
ci: remove unneeded npm 5.6 install
| false
|
remove unneeded npm 5.6 install
|
ci
|
diff --git a/.appveyor.yml b/.appveyor.yml
index 81cf5e240f49..060d7cc81186 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -7,7 +7,6 @@ matrix:
install:
- ps: Install-Product node $env:nodejs_version
- - npm install -g npm@~5.6.0
- npm install
- choco install googlechrome
diff --git a/.travis.yml b/.travis.yml
index f0847422d05f..9ecc30fd0344 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -92,10 +92,6 @@ matrix:
tags: true
-before_install:
- # Install npm 5.
- - npm install -g npm@~5.6.0
-
install:
- npm install
|
e897b39afcb933a3d9eb5006ea984af52a95aa40
|
2018-10-24 00:20:09
|
Andrey Sitnik
|
feat(@angular-devkit/build-angular): update Autoprefixer and PostCSS
| false
|
update Autoprefixer and PostCSS
|
feat
|
diff --git a/packages/angular_devkit/build_angular/package.json b/packages/angular_devkit/build_angular/package.json
index a7e0c59e84d2..421fdd96a400 100644
--- a/packages/angular_devkit/build_angular/package.json
+++ b/packages/angular_devkit/build_angular/package.json
@@ -12,7 +12,7 @@
"@angular-devkit/core": "0.0.0",
"@ngtools/webpack": "0.0.0",
"ajv": "6.5.3",
- "autoprefixer": "8.4.1",
+ "autoprefixer": "9.1.5",
"circular-dependency-plugin": "5.0.2",
"clean-css": "4.2.1",
"copy-webpack-plugin": "4.5.4",
@@ -30,9 +30,9 @@
"parse5": "4.0.0",
"opn": "5.3.0",
"portfinder": "1.0.17",
- "postcss": "6.0.23",
- "postcss-import": "11.1.0",
- "postcss-loader": "2.1.6",
+ "postcss": "7.0.5",
+ "postcss-import": "12.0.0",
+ "postcss-loader": "3.0.0",
"raw-loader": "0.5.1",
"rxjs": "6.3.3",
"sass-loader": "7.1.0",
@@ -87,4 +87,4 @@
"protractor": "~5.4.0",
"zone.js": "^0.8.19"
}
-}
\ No newline at end of file
+}
diff --git a/yarn.lock b/yarn.lock
index 1138645a606e..f06f2662611a 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1066,19 +1066,7 @@ atob@^2.1.1:
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
[email protected]:
- version "8.4.1"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-8.4.1.tgz#c6b30001ea4b3daa6b611e50071f62dd24beb564"
- integrity sha512-YqUclCBDXUT9Y7aQ8Xv+ja8yhTZYJoMsOD7WS++gZIJLCpCu+gPcKGDlhk6S3WxhLkTcNVdaMZAWys2nzZCH7g==
- dependencies:
- browserslist "^3.2.6"
- caniuse-lite "^1.0.30000832"
- normalize-range "^0.1.2"
- num2fraction "^1.2.2"
- postcss "^6.0.22"
- postcss-value-parser "^3.2.3"
-
-autoprefixer@^9.0.0:
[email protected], autoprefixer@^9.0.0:
version "9.1.5"
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.1.5.tgz#8675fd8d1c0d43069f3b19a2c316f3524e4f6671"
integrity sha512-kk4Zb6RUc58ld7gdosERHMF3DzIYJc2fp5sX46qEsGXQQy5bXsu8qyLjoxuY1NuQ/cJuCYnx99BfjwnRggrYIw==
@@ -1451,14 +1439,6 @@ browserify-zlib@^0.2.0:
dependencies:
pako "~1.0.5"
-browserslist@^3.2.6:
- version "3.2.8"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6"
- integrity sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==
- dependencies:
- caniuse-lite "^1.0.30000844"
- electron-to-chromium "^1.3.47"
-
browserslist@^4.0.0, browserslist@^4.1.0:
version "4.1.1"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.1.1.tgz#328eb4ff1215b12df6589e9ab82f8adaa4fc8cd6"
@@ -1658,7 +1638,7 @@ camelcase@^4.0.0, camelcase@^4.1.0:
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
-caniuse-lite@^1.0.30000832, caniuse-lite@^1.0.30000844, caniuse-lite@^1.0.30000884:
+caniuse-lite@^1.0.30000884:
version "1.0.30000885"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000885.tgz#e889e9f8e7e50e769f2a49634c932b8aee622984"
integrity sha512-cXKbYwpxBLd7qHyej16JazPoUacqoVuDhvR61U7Fr5vSxMUiodzcYa1rQYRYfZ5GexV03vGZHd722vNPLjPJGQ==
@@ -2819,7 +2799,7 @@ [email protected]:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
-electron-to-chromium@^1.3.47, electron-to-chromium@^1.3.62:
+electron-to-chromium@^1.3.62:
version "1.3.65"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.65.tgz#0655c238e45fea7e0e0e81fd0cac62b8186129c2"
integrity sha512-tyGr+wh2c/JYBVMeflKpZ3ricwtBPyVBMtRNxYGObl7TP5bAeupgz4VZnBzQSFleZViXYTws1yZtKKFQYZyiYw==
@@ -6612,12 +6592,12 @@ posix-character-classes@^0.1.0:
resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
[email protected]:
- version "11.1.0"
- resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-11.1.0.tgz#55c9362c9192994ec68865d224419df1db2981f0"
- integrity sha512-5l327iI75POonjxkXgdRCUS+AlzAdBx4pOvMEhTKTCjb1p8IEeVR9yx3cPbmN7LIWJLbfnIXxAhoB4jpD0c/Cw==
[email protected]:
+ version "12.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-12.0.0.tgz#149f96a4ef0b27525c419784be8517ebd17e92c5"
+ integrity sha512-3KqKRZcaZAvxbY8DVLdd81tG5uKzbUQuiWIvy0o0fzEC42bKacqPYFWbfCQyw6L4LWUaqPz/idvIdbhpgQ32eQ==
dependencies:
- postcss "^6.0.1"
+ postcss "^7.0.1"
postcss-value-parser "^3.2.3"
read-cache "^1.0.0"
resolve "^1.1.7"
@@ -6630,15 +6610,15 @@ postcss-load-config@^2.0.0:
cosmiconfig "^4.0.0"
import-cwd "^2.0.0"
[email protected]:
- version "2.1.6"
- resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-2.1.6.tgz#1d7dd7b17c6ba234b9bed5af13e0bea40a42d740"
- integrity sha512-hgiWSc13xVQAq25cVw80CH0l49ZKlAnU1hKPOdRrNj89bokRr/bZF2nT+hebPPF9c9xs8c3gw3Fr2nxtmXYnNg==
[email protected]:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d"
+ integrity sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==
dependencies:
loader-utils "^1.1.0"
- postcss "^6.0.0"
+ postcss "^7.0.0"
postcss-load-config "^2.0.0"
- schema-utils "^0.4.0"
+ schema-utils "^1.0.0"
postcss-url@^8.0.0:
version "8.0.0"
@@ -6656,14 +6636,14 @@ postcss-value-parser@^3.2.3:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15"
integrity sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=
[email protected], postcss@^6.0.0, postcss@^6.0.1, postcss@^6.0.22:
- version "6.0.23"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324"
- integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==
[email protected], postcss@^7.0.1:
+ version "7.0.5"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.5.tgz#70e6443e36a6d520b0fd4e7593fcca3635ee9f55"
+ integrity sha512-HBNpviAUFCKvEh7NZhw1e8MBPivRszIiUnhrJ+sBFVSYSqubrzwX3KG51mYgcRHX8j/cAgZJedONZcm5jTBdgQ==
dependencies:
chalk "^2.4.1"
source-map "^0.6.1"
- supports-color "^5.4.0"
+ supports-color "^5.5.0"
postcss@^7.0.0, postcss@^7.0.2:
version "7.0.2"
@@ -7513,7 +7493,7 @@ schema-utils@^0.3.0:
dependencies:
ajv "^5.0.0"
-schema-utils@^0.4.0, schema-utils@^0.4.4, schema-utils@^0.4.5:
+schema-utils@^0.4.4, schema-utils@^0.4.5:
version "0.4.7"
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187"
integrity sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==
@@ -8360,7 +8340,7 @@ supports-color@^3.1.0:
dependencies:
has-flag "^1.0.0"
-supports-color@^5.1.0, supports-color@^5.3.0, supports-color@^5.4.0:
+supports-color@^5.1.0, supports-color@^5.3.0, supports-color@^5.4.0, supports-color@^5.5.0:
version "5.5.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
|
65278a76140299eabf7d546fcf774eaf7459075b
|
2022-08-17 16:04:04
|
Alan Agius
|
release: cut the v14.2.0-next.0 release
| false
|
cut the v14.2.0-next.0 release
|
release
|
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 25fe98912295..6e6aa9f4f58d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+<a name="14.2.0-next.0"></a>
+
+# 14.2.0-next.0 (2022-08-17)
+
+## Special Thanks
+
+Alan Agius, Charles Lyding and angular-robot[bot]
+
+<!-- CHANGELOG SPLIT MARKER -->
+
<a name="14.1.0"></a>
# 14.1.0 (2022-08-17)
|
659baf7e2a8cc0af549201d9f6abaf6e6c12de26
|
2023-03-23 22:58:55
|
Angular Robot
|
build: update github/codeql-action action to v2.2.8
| false
|
update github/codeql-action action to v2.2.8
|
build
|
diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml
index eff99a07c7d7..a3cf78bac473 100644
--- a/.github/workflows/scorecard.yml
+++ b/.github/workflows/scorecard.yml
@@ -46,6 +46,6 @@ jobs:
# Upload the results to GitHub's code scanning dashboard.
- name: 'Upload to code-scanning'
- uses: github/codeql-action/upload-sarif@168b99b3c22180941ae7dbdd5f5c9678ede476ba # v2.2.7
+ uses: github/codeql-action/upload-sarif@67a35a08586135a9573f4327e904ecbf517a882d # v2.2.8
with:
sarif_file: results.sarif
|
b834014bb172ffaaeac94c125d45ae68112efff1
|
2018-08-04 04:02:10
|
Yi Qi
|
build: Fix all the BUILD files for google3
| false
|
Fix all the BUILD files for google3
|
build
|
diff --git a/packages/angular/cli/BUILD b/packages/angular/cli/BUILD
index 19d60b27d639..160577763c8e 100644
--- a/packages/angular/cli/BUILD
+++ b/packages/angular/cli/BUILD
@@ -18,6 +18,7 @@ ts_library(
"**/*_spec_large.ts",
],
),
+ data = glob(["**/*.json"]),
deps = [
"//packages/angular_devkit/architect",
"//packages/angular_devkit/core",
@@ -30,4 +31,4 @@ ts_library(
# @typings: semver
],
tsconfig = "//:tsconfig.json"
-)
\ No newline at end of file
+)
diff --git a/packages/angular_devkit/architect/BUILD b/packages/angular_devkit/architect/BUILD
index c6e8f83c16e8..feb7cfc248f4 100644
--- a/packages/angular_devkit/architect/BUILD
+++ b/packages/angular_devkit/architect/BUILD
@@ -23,6 +23,7 @@ ts_library(
"**/*_spec_large.ts",
],
),
+ data = glob(["**/*.json"]),
deps = [
"//packages/angular_devkit/core",
"//packages/angular_devkit/core:node",
diff --git a/packages/angular_devkit/core/BUILD b/packages/angular_devkit/core/BUILD
index eaacff3c255d..9e782d487d9b 100644
--- a/packages/angular_devkit/core/BUILD
+++ b/packages/angular_devkit/core/BUILD
@@ -18,6 +18,7 @@ ts_library(
"src/**/*_benchmark.ts",
],
),
+ data = glob(["**/*.json"]),
module_name = "@angular-devkit/core",
module_root = "src",
deps = [
diff --git a/packages/schematics/angular/BUILD b/packages/schematics/angular/BUILD
new file mode 100644
index 000000000000..dff3834c5789
--- /dev/null
+++ b/packages/schematics/angular/BUILD
@@ -0,0 +1,27 @@
+# Copyright Google Inc. All Rights Reserved.
+#
+# Use of this source code is governed by an MIT-style license that can be
+# found in the LICENSE file at https://angular.io/license
+
+licenses(["notice"]) # MIT
+
+load("//tools:defaults.bzl", "ts_library")
+
+ts_library(
+ name = "utility",
+ srcs = glob(
+ include = ["utility/**/*.ts"],
+ exclude = [
+ "utility/**/*_spec.ts",
+ "utility/test/**",
+ ],
+ ),
+ visibility = ["//visibility:public"],
+ deps = [
+ "//packages/angular_devkit/core",
+ "//packages/angular_devkit/schematics",
+ "//packages/angular_devkit/schematics:tasks",
+ # @typings: typescript
+ # @typings: node
+ ],
+)
|
6aac27ba12cf6dd781a2db9748d8769c234863ef
|
2016-04-15 12:20:23
|
gdi2290
|
chore(universal): patch 0.92.2
| false
|
patch 0.92.2
|
chore
|
diff --git a/modules/universal/package.json b/modules/universal/package.json
index 33d227176168..11c92a38b9c8 100644
--- a/modules/universal/package.json
+++ b/modules/universal/package.json
@@ -1,6 +1,6 @@
{
"name": "angular2-universal",
- "version": "0.92.1",
+ "version": "0.92.2",
"description": "Universal (isomorphic) javascript support for Angular2",
"homepage": "https://github.com/angular/universal",
"license": "MIT",
|
3b52fa43d318ec227267155bc600e041a36ba267
|
2018-12-27 02:02:49
|
Filipe Silva
|
fix(@angular-devkit/build-angular): resolve project root for fork process
| false
|
resolve project root for fork process
|
fix
|
diff --git a/packages/angular_devkit/build_angular/src/protractor/index.ts b/packages/angular_devkit/build_angular/src/protractor/index.ts
index ddbd55e85a77..d00e92608e1b 100644
--- a/packages/angular_devkit/build_angular/src/protractor/index.ts
+++ b/packages/angular_devkit/build_angular/src/protractor/index.ts
@@ -142,7 +142,7 @@ export class ProtractorBuilder implements Builder<ProtractorBuilderOptions> {
// process. To work around this we run it in a subprocess.
// https://github.com/angular/protractor/issues/4160
return runModuleAsObservableFork(
- root,
+ getSystemPath(root),
'protractor/built/launcher',
'init',
[
|
1d572fccbdbe87ca81119f9e9a523e7e807cce7b
|
2020-01-13 23:17:07
|
Seth Jones
|
build: update tree-kill to version ^1.2.2
| false
|
update tree-kill to version ^1.2.2
|
build
|
diff --git a/package.json b/package.json
index 00c1bc652087..822516b8509d 100644
--- a/package.json
+++ b/package.json
@@ -142,7 +142,7 @@
"spdx-satisfies": "^5.0.0",
"tar": "^5.0.0",
"through2": "^3.0.0",
- "tree-kill": "^1.2.0",
+ "tree-kill": "^1.2.2",
"ts-api-guardian": "0.4.6",
"ts-node": "^5.0.0",
"tslint-no-circular-imports": "^0.7.0",
diff --git a/yarn.lock b/yarn.lock
index e28c593af8a1..164d3d887cc0 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -11336,7 +11336,7 @@ tr46@^1.0.1:
dependencies:
punycode "^2.1.0"
[email protected]:
[email protected], tree-kill@^1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc"
integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==
|
fffc9e1f7ee736c40b0dfe80c26028de2015f587
|
2024-01-20 09:05:53
|
Angular Robot
|
build: update dependency vite to v5.0.12 [security]
| false
|
update dependency vite to v5.0.12 [security]
|
build
|
diff --git a/package.json b/package.json
index c898380bed43..685fcffcfb1a 100644
--- a/package.json
+++ b/package.json
@@ -212,7 +212,7 @@
"undici": "6.3.0",
"verdaccio": "5.29.0",
"verdaccio-auth-memory": "^10.0.0",
- "vite": "5.0.11",
+ "vite": "5.0.12",
"watchpack": "2.4.0",
"webpack": "5.89.0",
"webpack-dev-middleware": "6.1.1",
diff --git a/packages/angular_devkit/build_angular/package.json b/packages/angular_devkit/build_angular/package.json
index 9a79278cf43b..46991a414d4e 100644
--- a/packages/angular_devkit/build_angular/package.json
+++ b/packages/angular_devkit/build_angular/package.json
@@ -63,7 +63,7 @@
"tree-kill": "1.2.2",
"tslib": "2.6.2",
"undici": "6.3.0",
- "vite": "5.0.11",
+ "vite": "5.0.12",
"watchpack": "2.4.0",
"webpack": "5.89.0",
"webpack-dev-middleware": "6.1.1",
diff --git a/yarn.lock b/yarn.lock
index ec95002e0c07..5185b6bd289a 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -13137,6 +13137,17 @@ [email protected]:
optionalDependencies:
fsevents "~2.3.3"
[email protected]:
+ version "5.0.12"
+ resolved "https://registry.yarnpkg.com/vite/-/vite-5.0.12.tgz#8a2ffd4da36c132aec4adafe05d7adde38333c47"
+ integrity sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==
+ dependencies:
+ esbuild "^0.19.3"
+ postcss "^8.4.32"
+ rollup "^4.2.0"
+ optionalDependencies:
+ fsevents "~2.3.3"
+
void-elements@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec"
|
5bbac0774f3634f36cacf69d3f6802270e21250d
|
2020-09-26 02:40:56
|
Charles Lyding
|
fix(@angular-devkit/build-angular): add karma as an optional peer dependency
| false
|
add karma as an optional peer dependency
|
fix
|
diff --git a/packages/angular_devkit/build_angular/package.json b/packages/angular_devkit/build_angular/package.json
index 22ea0964d4d9..93e544ce6c63 100644
--- a/packages/angular_devkit/build_angular/package.json
+++ b/packages/angular_devkit/build_angular/package.json
@@ -81,6 +81,7 @@
"peerDependencies": {
"@angular/compiler-cli": "^11.0.0 || ^11.0.0-next",
"@angular/localize": "^11.0.0 || ^11.0.0-next",
+ "karma": "^5.2.0",
"ng-packagr": "^10.0.0",
"typescript": ">=3.9 < 4.1"
},
@@ -88,6 +89,9 @@
"@angular/localize": {
"optional": true
},
+ "karma": {
+ "optional": true
+ },
"ng-packagr": {
"optional": true
}
diff --git a/packages/angular_devkit/build_angular/src/karma/index.ts b/packages/angular_devkit/build_angular/src/karma/index.ts
index 8b13fcdf0303..9a4cc9587ffd 100644
--- a/packages/angular_devkit/build_angular/src/karma/index.ts
+++ b/packages/angular_devkit/build_angular/src/karma/index.ts
@@ -26,7 +26,6 @@ import { SingleTestTransformLoader } from '../webpack/plugins/single-test-transf
import { findTests } from './find-tests';
import { Schema as KarmaBuilderOptions } from './schema';
-// tslint:disable-next-line:no-implicit-dependencies
export type KarmaConfigOptions = import('karma').ConfigOptions & {
buildWebpack?: unknown;
configFile?: string;
@@ -36,7 +35,6 @@ async function initialize(
options: KarmaBuilderOptions,
context: BuilderContext,
webpackConfigurationTransformer?: ExecutionTransformer<webpack.Configuration>,
- // tslint:disable-next-line:no-implicit-dependencies
): Promise<[typeof import('karma'), webpack.Configuration]> {
const { config } = await generateBrowserWebpackConfigFromContext(
// only two properties are missing:
@@ -53,7 +51,6 @@ async function initialize(
],
);
- // tslint:disable-next-line:no-implicit-dependencies
const karma = await import('karma');
return [
|
60d4c35ba6d0ce7b47c5c716861b81a53eaef544
|
2017-10-25 00:33:55
|
Filipe Silva
|
ci: run nightly on circleci
| false
|
run nightly on circleci
|
ci
|
diff --git a/.circleci/config.yml b/.circleci/config.yml
index e752093c4f8a..85d7be1c8ca1 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -48,6 +48,7 @@ jobs:
<<: *restore_cache_defaults
- run: npm run test
+# E2E test for current Angular.
e2e-setup:
<<: *defaults
steps:
@@ -109,6 +110,68 @@ jobs:
- run: cp -r /workspace/dist/ ./
- run: xvfb-run -a node tests/run_e2e.js --nobuild --reuse=/workspace/angular-cli-e2e-default/test-project --nb-shards=4 --shard=3 --nosilent
+# E2E test for Angular nightly.
+ e2e-setup-nightly:
+ <<: *defaults
+ steps:
+ - checkout
+ - restore_cache:
+ <<: *restore_cache_defaults
+ - run: mkdir /workspace
+ - run: mkdir /workspace/angular-cli-e2e-nightly
+ # Ignore all tests, we just want the setup step to persist it to the workspace.
+ - run: node tests/run_e2e.js --tmpdir=/workspace/angular-cli-e2e-nightly --ignore=**/* --nightly
+ - run: mv dist /workspace/
+ - persist_to_workspace:
+ root: /workspace
+ paths:
+ - dist/
+ - angular-cli-e2e-nightly/
+
+ e2e-0-nightly:
+ <<: *defaults
+ steps:
+ - checkout
+ - restore_cache:
+ <<: *restore_cache_defaults
+ - attach_workspace:
+ <<: *attach_workspace_defaults
+ - run: cp -r /workspace/dist/ ./
+ - run: xvfb-run -a node tests/run_e2e.js --nobuild --reuse=/workspace/angular-cli-e2e-nightly/test-project --nb-shards=4 --shard=0 --nosilent --nightly
+
+ e2e-1-nightly:
+ <<: *defaults
+ steps:
+ - checkout
+ - restore_cache:
+ <<: *restore_cache_defaults
+ - attach_workspace:
+ <<: *attach_workspace_defaults
+ - run: cp -r /workspace/dist/ ./
+ - run: xvfb-run -a node tests/run_e2e.js --nobuild --reuse=/workspace/angular-cli-e2e-nightly/test-project --nb-shards=4 --shard=1 --nosilent --nightly
+
+ e2e-2-nightly:
+ <<: *defaults
+ steps:
+ - checkout
+ - restore_cache:
+ <<: *restore_cache_defaults
+ - attach_workspace:
+ <<: *attach_workspace_defaults
+ - run: cp -r /workspace/dist/ ./
+ - run: xvfb-run -a node tests/run_e2e.js --nobuild --reuse=/workspace/angular-cli-e2e-nightly/test-project --nb-shards=4 --shard=2 --nosilent --nightly
+
+ e2e-3-nightly:
+ <<: *defaults
+ steps:
+ - checkout
+ - restore_cache:
+ <<: *restore_cache_defaults
+ - attach_workspace:
+ <<: *attach_workspace_defaults
+ - run: cp -r /workspace/dist/ ./
+ - run: xvfb-run -a node tests/run_e2e.js --nobuild --reuse=/workspace/angular-cli-e2e-nightly/test-project --nb-shards=4 --shard=3 --nosilent --nightly
+
workflows:
version: 2
build_and_test:
@@ -120,6 +183,7 @@ workflows:
- test:
requires:
- build
+ # E2E test for current Angular.
- e2e-setup:
requires:
- build
@@ -135,3 +199,23 @@ workflows:
- e2e-3:
requires:
- e2e-setup
+ # E2E test for Angular nightly.
+ - e2e-setup-nightly:
+ requires:
+ - build
+ filters:
+ branches:
+ only:
+ - master
+ - e2e-0-nightly:
+ requires:
+ - e2e-setup-nightly
+ - e2e-1-nightly:
+ requires:
+ - e2e-setup-nightly
+ - e2e-2-nightly:
+ requires:
+ - e2e-setup-nightly
+ - e2e-3-nightly:
+ requires:
+ - e2e-setup-nightly
|
cc345b02d814a37bb23d6c3f1baca9595130d010
|
2024-10-23 14:50:07
|
Alan Agius
|
fix(@angular/build): Address build issue in Node.js LTS versions with prerendering or SSR
| false
|
Address build issue in Node.js LTS versions with prerendering or SSR
|
fix
|
diff --git a/packages/angular/build/src/tools/esbuild/javascript-transformer.ts b/packages/angular/build/src/tools/esbuild/javascript-transformer.ts
index 2e323bd26f6e..026163bca642 100644
--- a/packages/angular/build/src/tools/esbuild/javascript-transformer.ts
+++ b/packages/angular/build/src/tools/esbuild/javascript-transformer.ts
@@ -58,6 +58,8 @@ export class JavaScriptTransformer {
this.#workerPool ??= new WorkerPool({
filename: require.resolve('./javascript-transformer-worker'),
maxThreads: this.maxThreads,
+ // Prevent passing `--import` (loader-hooks) from parent to child worker.
+ execArgv: [],
});
return this.#workerPool;
|
4d54d33b58bd6d9809474ba266932208650379a0
|
2019-10-22 15:56:42
|
Renovate Bot
|
build: update ts-node to version 8.4.1
| false
|
update ts-node to version 8.4.1
|
build
|
diff --git a/integration/express-engine-ivy/package.json b/integration/express-engine-ivy/package.json
index 10f948e4be53..ac56ce68c195 100644
--- a/integration/express-engine-ivy/package.json
+++ b/integration/express-engine-ivy/package.json
@@ -50,7 +50,7 @@
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"protractor": "file:../../node_modules/protractor",
- "ts-node": "8.3.0",
+ "ts-node": "8.4.1",
"tslint": "5.20.0",
"typescript": "file:../../node_modules/typescript"
}
diff --git a/integration/express-engine-ve/package.json b/integration/express-engine-ve/package.json
index 8082351168d7..9106e62998f6 100644
--- a/integration/express-engine-ve/package.json
+++ b/integration/express-engine-ve/package.json
@@ -50,7 +50,7 @@
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"protractor": "file:../../node_modules/protractor",
- "ts-node": "8.3.0",
+ "ts-node": "8.4.1",
"tslint": "5.20.0",
"typescript": "file:../../node_modules/typescript"
}
diff --git a/integration/hapi-engine-ivy/package.json b/integration/hapi-engine-ivy/package.json
index 9b271363246f..b37e9279609e 100644
--- a/integration/hapi-engine-ivy/package.json
+++ b/integration/hapi-engine-ivy/package.json
@@ -52,7 +52,7 @@
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"protractor": "file:../../node_modules/protractor",
- "ts-node": "8.3.0",
+ "ts-node": "8.4.1",
"tslint": "5.20.0",
"typescript": "file:../../node_modules/typescript"
}
diff --git a/integration/hapi-engine-ve/package.json b/integration/hapi-engine-ve/package.json
index 45561c44929b..e29443e12de2 100644
--- a/integration/hapi-engine-ve/package.json
+++ b/integration/hapi-engine-ve/package.json
@@ -52,7 +52,7 @@
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"protractor": "file:../../node_modules/protractor",
- "ts-node": "8.3.0",
+ "ts-node": "8.4.1",
"tslint": "5.20.0",
"typescript": "file:../../node_modules/typescript"
}
|
f8b534041b1f8b368f2d86630fbf98b175ebb819
|
2023-03-30 22:45:18
|
Angular Robot
|
build: lock file maintenance
| false
|
lock file maintenance
|
build
|
diff --git a/yarn.lock b/yarn.lock
index 198dd6b5f3cb..224d952743b8 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -422,7 +422,7 @@
json5 "^2.2.1"
semver "^6.3.0"
-"@babel/[email protected]":
+"@babel/[email protected]", "@babel/core@^7.12.3", "@babel/core@^7.16.0":
version "7.21.3"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.3.tgz#cf1c877284a469da5d1ce1d1e53665253fae712e"
integrity sha512-qIJONzoa/qiHghnm0l1n4i/6IIziDpzqc36FBs4pzMhDUraHqponwJLiAKm1hGLP3OSB/TVNz6rMwVGpwxxySw==
@@ -443,28 +443,7 @@
json5 "^2.2.2"
semver "^6.3.0"
-"@babel/core@^7.12.3", "@babel/core@^7.16.0":
- version "7.21.0"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.0.tgz#1341aefdcc14ccc7553fcc688dd8986a2daffc13"
- integrity sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==
- dependencies:
- "@ampproject/remapping" "^2.2.0"
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.21.0"
- "@babel/helper-compilation-targets" "^7.20.7"
- "@babel/helper-module-transforms" "^7.21.0"
- "@babel/helpers" "^7.21.0"
- "@babel/parser" "^7.21.0"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.21.0"
- "@babel/types" "^7.21.0"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.2"
- json5 "^2.2.2"
- semver "^6.3.0"
-
-"@babel/[email protected]", "@babel/generator@^7.21.3":
+"@babel/[email protected]", "@babel/generator@^7.19.3", "@babel/generator@^7.21.3":
version "7.21.3"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.3.tgz#232359d0874b392df04045d72ce2fd9bb5045fce"
integrity sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==
@@ -474,16 +453,6 @@
"@jridgewell/trace-mapping" "^0.3.17"
jsesc "^2.5.1"
-"@babel/generator@^7.19.3", "@babel/generator@^7.21.0", "@babel/generator@^7.21.1":
- version "7.21.1"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.1.tgz#951cc626057bc0af2c35cd23e9c64d384dea83dd"
- integrity sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==
- dependencies:
- "@babel/types" "^7.21.0"
- "@jridgewell/gen-mapping" "^0.3.2"
- "@jridgewell/trace-mapping" "^0.3.17"
- jsesc "^2.5.1"
-
"@babel/[email protected]", "@babel/helper-annotate-as-pure@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb"
@@ -585,7 +554,7 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.0", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.0", "@babel/helper-module-transforms@^7.21.2":
+"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.0", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.2":
version "7.21.2"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz#160caafa4978ac8c00ac66636cb0fa37b024e2d2"
integrity sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==
@@ -697,12 +666,7 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.14.7", "@babel/parser@^7.19.3", "@babel/parser@^7.20.7", "@babel/parser@^7.21.0", "@babel/parser@^7.21.2":
- version "7.21.2"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.2.tgz#dacafadfc6d7654c3051a66d6fe55b6cb2f2a0b3"
- integrity sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==
-
-"@babel/parser@^7.21.3":
+"@babel/parser@^7.14.7", "@babel/parser@^7.19.3", "@babel/parser@^7.20.7", "@babel/parser@^7.21.3":
version "7.21.3"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.3.tgz#1d285d67a19162ff9daa358d4cb41d50c06220b3"
integrity sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ==
@@ -1011,9 +975,9 @@
"@babel/template" "^7.20.7"
"@babel/plugin-transform-destructuring@^7.20.2":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz#8bda578f71620c7de7c93af590154ba331415454"
- integrity sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==
+ version "7.21.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz#73b46d0fd11cd6ef57dea8a381b1215f4959d401"
+ integrity sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
@@ -1129,9 +1093,9 @@
"@babel/helper-replace-supers" "^7.18.6"
"@babel/plugin-transform-parameters@^7.20.1", "@babel/plugin-transform-parameters@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz#0ee349e9d1bc96e78e3b37a7af423a4078a7083f"
- integrity sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==
+ version "7.21.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz#18fc4e797cf6d6d972cb8c411dbe8a809fa157db"
+ integrity sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
@@ -1333,23 +1297,7 @@
"@babel/parser" "^7.20.7"
"@babel/types" "^7.20.7"
-"@babel/traverse@^7.19.3", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2":
- version "7.21.2"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.2.tgz#ac7e1f27658750892e815e60ae90f382a46d8e75"
- integrity sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==
- dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.21.1"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.21.0"
- "@babel/helper-hoist-variables" "^7.18.6"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.21.2"
- "@babel/types" "^7.21.2"
- debug "^4.1.0"
- globals "^11.1.0"
-
-"@babel/traverse@^7.21.3":
+"@babel/traverse@^7.19.3", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2", "@babel/traverse@^7.21.3":
version "7.21.3"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.3.tgz#4747c5e7903d224be71f90788b06798331896f67"
integrity sha512-XLyopNeaTancVitYZe2MlUEvgKb6YVVPXzofHgqHijCImG33b/uTurMS488ht/Hbsb2XK3U2BnSTxKVNGV3nGQ==
@@ -1365,16 +1313,7 @@
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.3", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.4.4":
- version "7.21.2"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.2.tgz#92246f6e00f91755893c2876ad653db70c8310d1"
- integrity sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==
- dependencies:
- "@babel/helper-string-parser" "^7.19.4"
- "@babel/helper-validator-identifier" "^7.19.1"
- to-fast-properties "^2.0.0"
-
-"@babel/types@^7.21.3":
+"@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.3", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.2", "@babel/types@^7.21.3", "@babel/types@^7.4.4":
version "7.21.3"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.3.tgz#4865a5357ce40f64e3400b0f3b737dc6d4f64d05"
integrity sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==
@@ -1484,6 +1423,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.12.tgz#15a8e2b407d03989b899e325151dc2e96d19c620"
integrity sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.14.tgz#4624cea3c8941c91f9e9c1228f550d23f1cef037"
+ integrity sha512-eLOpPO1RvtsP71afiFTvS7tVFShJBCT0txiv/xjFBo5a7R7Gjw7X0IgIaFoLKhqXYAXhahoXm7qAmRXhY4guJg==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.11.tgz#f3fc768235aecbeb840d0049fdf13cd28592105f"
@@ -1494,6 +1438,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.12.tgz#677a09297e1f4f37aba7b4fc4f31088b00484985"
integrity sha512-E/sgkvwoIfj4aMAPL2e35VnUJspzVYl7+M1B2cqeubdBhADV4uPon0KCc8p2G+LqSJ6i8ocYPCqY3A4GGq0zkQ==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.14.tgz#74fae60fcab34c3f0e15cb56473a6091ba2b53a6"
+ integrity sha512-0CnlwnjDU8cks0yJLXfkaU/uoLyRf9VZJs4p1PskBr2AlAHeEsFEwJEo0of/Z3g+ilw5mpyDwThlxzNEIxOE4g==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.11.tgz#443ed47771a7e917e4282469ba350d117473550c"
@@ -1504,6 +1453,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.12.tgz#b292729eef4e0060ae1941f6a021c4d2542a3521"
integrity sha512-m4OsaCr5gT+se25rFPHKQXARMyAehHTQAz4XX1Vk3d27VtqiX0ALMBPoXZsGaB6JYryCLfgGwUslMqTfqeLU0w==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.14.tgz#f002fbc08d5e939d8314bd23bcfb1e95d029491f"
+ integrity sha512-nrfQYWBfLGfSGLvRVlt6xi63B5IbfHm3tZCdu/82zuFPQ7zez4XjmRtF/wIRYbJQ/DsZrxJdEvYFE67avYXyng==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.11.tgz#0e8c78d94d5759a48521dbfd83189d2ed3499a16"
@@ -1514,6 +1468,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.12.tgz#efa35318df931da05825894e1787b976d55adbe3"
integrity sha512-O3GCZghRIx+RAN0NDPhyyhRgwa19MoKlzGonIb5hgTj78krqp9XZbYCvFr9N1eUxg0ZQEpiiZ4QvsOQwBpP+lg==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.14.tgz#b8dcd79a1dd19564950b4ca51d62999011e2e168"
+ integrity sha512-eoSjEuDsU1ROwgBH/c+fZzuSyJUVXQTOIN9xuLs9dE/9HbV/A5IqdXHU1p2OfIMwBwOYJ9SFVGGldxeRCUJFyw==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.11.tgz#2405cfdf70eb961c7cf973463ca7263dc2004c88"
@@ -1524,6 +1483,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.12.tgz#e7b54bb3f6dc81aadfd0485cd1623c648157e64d"
integrity sha512-5D48jM3tW27h1qjaD9UNRuN+4v0zvksqZSPZqeSWggfMlsVdAhH3pwSfQIFJwcs9QJ9BRibPS4ViZgs3d2wsCA==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.14.tgz#4b49f195d9473625efc3c773fc757018f2c0d979"
+ integrity sha512-zN0U8RWfrDttdFNkHqFYZtOH8hdi22z0pFm0aIJPsNC4QQZv7je8DWCX5iA4Zx6tRhS0CCc0XC2m7wKsbWEo5g==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.11.tgz#d5138e873e15f87bd4564c024dfa00ef37e623fd"
@@ -1534,6 +1498,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.12.tgz#99a18a8579d6299c449566fe91d9b6a54cf2a591"
integrity sha512-OWvHzmLNTdF1erSvrfoEBGlN94IE6vCEaGEkEH29uo/VoONqPnoDFfShi41Ew+yKimx4vrmmAJEGNoyyP+OgOQ==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.14.tgz#480923fd38f644c6342c55e916cc7c231a85eeb7"
+ integrity sha512-z0VcD4ibeZWVQCW1O7szaLxGsx54gcCnajEJMdYoYjLiq4g1jrP2lMq6pk71dbS5+7op/L2Aod+erw+EUr28/A==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.11.tgz#e850b58b8fabf8e9ef0e125af3c25229ad2d6c38"
@@ -1544,6 +1513,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.12.tgz#0e090190fede307fb4022f671791a50dd5121abd"
integrity sha512-A0Xg5CZv8MU9xh4a+7NUpi5VHBKh1RaGJKqjxe4KG87X+mTjDE6ZvlJqpWoeJxgfXHT7IMP9tDFu7IZ03OtJAw==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.14.tgz#a6b6b01954ad8562461cb8a5e40e8a860af69cbe"
+ integrity sha512-hd9mPcxfTgJlolrPlcXkQk9BMwNBvNBsVaUe5eNUqXut6weDQH8whcNaKNF2RO8NbpT6GY8rHOK2A9y++s+ehw==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.11.tgz#2bfb93d0809ec2357c12ebb27736b750c9ae0aa5"
@@ -1554,6 +1528,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.12.tgz#7fe2a69f8a1a7153fa2b0f44aabcadb59475c7e0"
integrity sha512-cK3AjkEc+8v8YG02hYLQIQlOznW+v9N+OI9BAFuyqkfQFR+DnDLhEM5N8QRxAUz99cJTo1rLNXqRrvY15gbQUg==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.14.tgz#1fe2f39f78183b59f75a4ad9c48d079916d92418"
+ integrity sha512-FhAMNYOq3Iblcj9i+K0l1Fp/MHt+zBeRu/Qkf0LtrcFu3T45jcwB6A1iMsemQ42vR3GBhjNZJZTaCe3VFPbn9g==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.11.tgz#e56fb3b76828317a704f4a167c5bd790fe5314e7"
@@ -1564,6 +1543,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.12.tgz#b87c76ebf1fe03e01fd6bb5cfc2f3c5becd5ee93"
integrity sha512-WsHyJ7b7vzHdJ1fv67Yf++2dz3D726oO3QCu8iNYik4fb5YuuReOI9OtA+n7Mk0xyQivNTPbl181s+5oZ38gyA==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.14.tgz#18d594a49b64e4a3a05022c005cb384a58056a2a"
+ integrity sha512-BNTl+wSJ1omsH8s3TkQmIIIQHwvwJrU9u1ggb9XU2KTVM4TmthRIVyxSp2qxROJHhZuW/r8fht46/QE8hU8Qvg==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.11.tgz#59fa1c49b271793d14eb5effc757e8c0d0cb2cab"
@@ -1574,6 +1558,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.12.tgz#9e9357090254524d32e6708883a47328f3037858"
integrity sha512-jdOBXJqcgHlah/nYHnj3Hrnl9l63RjtQ4vn9+bohjQPI2QafASB5MtHAoEv0JQHVb/xYQTFOeuHnNYE1zF7tYw==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.14.tgz#f7f0182a9cfc0159e0922ed66c805c9c6ef1b654"
+ integrity sha512-91OK/lQ5y2v7AsmnFT+0EyxdPTNhov3y2CWMdizyMfxSxRqHazXdzgBKtlmkU2KYIc+9ZK3Vwp2KyXogEATYxQ==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.11.tgz#89575bc189099c03a36daa54f3f481780c7fd502"
@@ -1584,6 +1573,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.12.tgz#9deb605f9e2c82f59412ddfefb4b6b96d54b5b5b"
integrity sha512-GTOEtj8h9qPKXCyiBBnHconSCV9LwFyx/gv3Phw0pa25qPYjVuuGZ4Dk14bGCfGX3qKF0+ceeQvwmtI+aYBbVA==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.14.tgz#5f5305fdffe2d71dd9a97aa77d0c99c99409066f"
+ integrity sha512-vp15H+5NR6hubNgMluqqKza85HcGJgq7t6rMH7O3Y6ApiOWPkvW2AJfNojUQimfTp6OUrACUXfR4hmpcENXoMQ==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.11.tgz#0e18ca039dc7e4645efd8edc1b10952933eb6b1b"
@@ -1594,6 +1588,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.12.tgz#6ef170b974ddf5e6acdfa5b05f22b6e9dfd2b003"
integrity sha512-o8CIhfBwKcxmEENOH9RwmUejs5jFiNoDw7YgS0EJTF6kgPgcqLFjgoc5kDey5cMHRVCIWc6kK2ShUePOcc7RbA==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.14.tgz#a602e85c51b2f71d2aedfe7f4143b2f92f97f3f5"
+ integrity sha512-90TOdFV7N+fgi6c2+GO9ochEkmm9kBAKnuD5e08GQMgMINOdOFHuYLPQ91RYVrnWwQ5683sJKuLi9l4SsbJ7Hg==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.11.tgz#2d152cb3a253afb8c100a165ad132dc96f36cb11"
@@ -1604,6 +1603,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.12.tgz#1638d3d4acf1d34aaf37cf8908c2e1cefed16204"
integrity sha512-biMLH6NR/GR4z+ap0oJYb877LdBpGac8KfZoEnDiBKd7MD/xt8eaw1SFfYRUeMVx519kVkAOL2GExdFmYnZx3A==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.14.tgz#32d918d782105cbd9345dbfba14ee018b9c7afdf"
+ integrity sha512-NnBGeoqKkTugpBOBZZoktQQ1Yqb7aHKmHxsw43NddPB2YWLAlpb7THZIzsRsTr0Xw3nqiPxbA1H31ZMOG+VVPQ==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.11.tgz#c6ac494a81221d53d65b33e665c7df1747952d3c"
@@ -1614,6 +1618,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.12.tgz#135b6e9270a8e2de2b9094bb21a287517df520ef"
integrity sha512-jkphYUiO38wZGeWlfIBMB72auOllNA2sLfiZPGDtOBb1ELN8lmqBrlMiucgL8awBw1zBXN69PmZM6g4yTX84TA==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.14.tgz#38612e7b6c037dff7022c33f49ca17f85c5dec58"
+ integrity sha512-0qdlKScLXA8MGVy21JUKvMzCYWovctuP8KKqhtE5A6IVPq4onxXhSuhwDd2g5sRCzNDlDjitc5sX31BzDoL5Fw==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.11.tgz#4bad33894bc7415cea4be8fa90fe456226a424ad"
@@ -1624,6 +1633,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.12.tgz#21e40830770c5d08368e300842bde382ce97d615"
integrity sha512-j3ucLdeY9HBcvODhCY4b+Ds3hWGO8t+SAidtmWu/ukfLLG/oYDMaA+dnugTVAg5fnUOGNbIYL9TOjhWgQB8W5g==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.14.tgz#4397dff354f899e72fd035d72af59a700c465ccb"
+ integrity sha512-Hdm2Jo1yaaOro4v3+6/zJk6ygCqIZuSDJHdHaf8nVH/tfOuoEX5Riv03Ka15LmQBYJObUTNS1UdyoMk0WUn9Ww==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.11.tgz#903fda743459f530a16a6c6ee8d2c0f6c1a12fc7"
@@ -1634,6 +1648,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.12.tgz#76c1c199871d48e1aaa47a762fb9e0dca52e1f7a"
integrity sha512-uo5JL3cgaEGotaqSaJdRfFNSCUJOIliKLnDGWaVCgIKkHxwhYMm95pfMbWZ9l7GeW9kDg0tSxcy9NYdEtjwwmA==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.14.tgz#6c5cb99891b6c3e0c08369da3ef465e8038ad9c2"
+ integrity sha512-8KHF17OstlK4DuzeF/KmSgzrTWQrkWj5boluiiq7kvJCiQVzUrmSkaBvcLB2UgHpKENO2i6BthPkmUhNDaJsVw==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.11.tgz#b589239fe7d9b16ee03c5e191f3f5b640f1518a1"
@@ -1644,6 +1663,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.12.tgz#c7c3b3017a4b938c76c35f66af529baf62eac527"
integrity sha512-DNdoRg8JX+gGsbqt2gPgkgb00mqOgOO27KnrWZtdABl6yWTST30aibGJ6geBq3WM2TIeW6COs5AScnC7GwtGPg==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.14.tgz#5fa5255a64e9bf3947c1b3bef5e458b50b211994"
+ integrity sha512-nVwpqvb3yyXztxIT2+VsxJhB5GCgzPdk1n0HHSnchRAcxqKO6ghXwHhJnr0j/B+5FSyEqSxF4q03rbA2fKXtUQ==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.11.tgz#b355019754116bef39ec688f8fd2fe6471b9779b"
@@ -1654,6 +1678,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.12.tgz#05d04217d980e049001afdbeacbb58d31bb5cefb"
integrity sha512-aVsENlr7B64w8I1lhHShND5o8cW6sB9n9MUtLumFlPhG3elhNWtE7M1TFpj3m7lT3sKQUMkGFjTQBrvDDO1YWA==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.14.tgz#74d14c79dcb6faf446878cc64284aa4e02f5ca6f"
+ integrity sha512-1RZ7uQQ9zcy/GSAJL1xPdN7NDdOOtNEGiJalg/MOzeakZeTrgH/DoCkbq7TaPDiPhWqnDF+4bnydxRqQD7il6g==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.11.tgz#2ea47fb592e68406e5025a7696dc714fc6a115dc"
@@ -1664,6 +1693,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.12.tgz#cf3862521600e4eb6c440ec3bad31ed40fb87ef3"
integrity sha512-qbHGVQdKSwi0JQJuZznS4SyY27tYXYF0mrgthbxXrZI3AHKuRvU+Eqbg/F0rmLDpW/jkIZBlCO1XfHUBMNJ1pg==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.14.tgz#5c7d1c7203781d86c2a9b2ff77bd2f8036d24cfa"
+ integrity sha512-nqMjDsFwv7vp7msrwWRysnM38Sd44PKmW8EzV01YzDBTcTWUpczQg6mGao9VLicXSgW/iookNK6AxeogNVNDZA==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.11.tgz#47e6fdab17c4c52e6e0d606dd9cb843b29826325"
@@ -1674,6 +1708,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.12.tgz#43dd7fb5be77bf12a1550355ab2b123efd60868e"
integrity sha512-zsCp8Ql+96xXTVTmm6ffvoTSZSV2B/LzzkUXAY33F/76EajNw1m+jZ9zPfNJlJ3Rh4EzOszNDHsmG/fZOhtqDg==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.14.tgz#dc36ed84f1390e73b6019ccf0566c80045e5ca3d"
+ integrity sha512-xrD0mccTKRBBIotrITV7WVQAwNJ5+1va6L0H9zN92v2yEdjfAN7864cUaZwJS7JPEs53bDTzKFbfqVlG2HhyKQ==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.11.tgz#a97273aa3164c8d8f501899f55cc75a4a79599a3"
@@ -1684,6 +1723,11 @@
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.12.tgz#9940963d0bff4ea3035a84e2b4c6e41c5e6296eb"
integrity sha512-FfrFjR4id7wcFYOdqbDfDET3tjxCozUgbqdkOABsSFzoZGFC92UK7mg4JKRc/B3NNEf1s2WHxJ7VfTdVDPN3ng==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.14.tgz#0802a107afa9193c13e35de15a94fe347c588767"
+ integrity sha512-nXpkz9bbJrLLyUTYtRotSS3t5b+FOuljg8LgLdINWFs3FfqZMtbnBCZFUmBzQPyxqU87F8Av+3Nco/M3hEcu1w==
+
"@esbuild/[email protected]":
version "0.17.11"
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.11.tgz#9be796d93ae27b636da32d960899a4912bca27a1"
@@ -1694,17 +1738,22 @@
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.12.tgz#3a11d13e9a5b0c05db88991b234d8baba1f96487"
integrity sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw==
+"@esbuild/[email protected]":
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.14.tgz#e81fb49de05fed91bf74251c9ca0343f4fc77d31"
+ integrity sha512-gPQmsi2DKTaEgG14hc3CHXHp62k8g6qr0Pas+I4lUxRMugGSATh/Bi8Dgusoz9IQ0IfdrvLpco6kujEIBoaogA==
+
"@eslint-community/eslint-utils@^4.2.0":
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.2.0.tgz#a831e6e468b4b2b5ae42bf658bea015bf10bc518"
- integrity sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ==
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
+ integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
dependencies:
eslint-visitor-keys "^3.3.0"
"@eslint-community/regexpp@^4.4.0":
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.4.0.tgz#3e61c564fcd6b921cb789838631c5ee44df09403"
- integrity sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.0.tgz#f6f729b02feee2c749f57e334b7a1b5f40a81724"
+ integrity sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==
"@eslint/eslintrc@^2.0.2":
version "2.0.2"
@@ -1916,13 +1965,12 @@
semver "^7.3.5"
"@npmcli/git@^4.0.0":
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-4.0.3.tgz#354db5fe1f29696303638e191d8538ee9b01b4bb"
- integrity sha512-8cXNkDIbnXPVbhXMmQ7/bklCAjtmPaXfI9aEM4iH+xSuEHINLMHhlfESvVwdqmHJRJkR48vNJTSUvoF6GRPSFA==
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-4.0.4.tgz#cdf74f21b1d440c0756fb28159d935129d9daa33"
+ integrity sha512-5yZghx+u5M47LghaybLCkdSyFzV/w4OuH12d96HO389Ik9CDsLaDZJVynSGGVJOLn6gy/k7Dz5XYcplM3uxXRg==
dependencies:
"@npmcli/promise-spawn" "^6.0.0"
lru-cache "^7.4.4"
- mkdirp "^1.0.4"
npm-pick-manifest "^8.0.0"
proc-log "^3.0.0"
promise-inflight "^1.0.1"
@@ -2104,6 +2152,11 @@
"@angular-devkit/schematics" "16.0.0-next.5"
jsonc-parser "3.2.0"
+"@sigstore/protobuf-specs@^0.1.0":
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz#957cb64ea2f5ce527cc9cf02a096baeb0d2b99b4"
+ integrity sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==
+
"@socket.io/component-emitter@~3.1.0":
version "3.1.0"
resolved "https://registry.yarnpkg.com/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz#96116f2a912e0c02817345b3c10751069920d553"
@@ -2139,12 +2192,12 @@
resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e"
integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==
-"@tufjs/[email protected]":
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-1.0.0.tgz#5a5784e8770b7d014b5f87bff35af1f71fdebf1f"
- integrity sha512-RRMu4uMxWnZlxaIBxahSb2IssFZiu188sndesZflWOe1cA/qUqtemSIoBWbuVKPvvdktapImWNnKpBcc+VrCQw==
+"@tufjs/[email protected]":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-1.0.1.tgz#cc8bb0478188b4b6e58d5528668212724aac87ac"
+ integrity sha512-AY0VoG/AXdlSOocuREfPoEW4SNhOPp/7fw6mpAxfVIny1uZ+0fEtMoCi7NhELSlqQIRLMu7RgfKhkxT+AJ+EXg==
dependencies:
- minimatch "^6.1.0"
+ minimatch "^7.4.2"
"@types/[email protected]":
version "1.0.38"
@@ -2167,9 +2220,9 @@
"@types/node" "*"
"@types/browser-sync@^2.26.1", "@types/browser-sync@^2.26.3":
- version "2.26.3"
- resolved "https://registry.yarnpkg.com/@types/browser-sync/-/browser-sync-2.26.3.tgz#d8a2c316144b55d5cb11328b7cb63dc1778de524"
- integrity sha512-HIiI438D8q/DXFhdc2JELRMPtuHmR+0q+QNwP/mQoItHvPi7LK+bkZC7amKrSpnB2t4ct8BRd32LtOfd6TMNIw==
+ version "2.27.0"
+ resolved "https://registry.yarnpkg.com/@types/browser-sync/-/browser-sync-2.27.0.tgz#28f579ce4cb06e5b69e2701c654df437ab618664"
+ integrity sha512-CQc8mggMZpKsUAdjm7jyR8uWcFnxuly8xw76ZY4jSLugsZWHLcv7mLVVY591XPaZ2BqbFZT1fxov3hrQFistNg==
dependencies:
"@types/micromatch" "^2"
"@types/node" "*"
@@ -2212,9 +2265,9 @@
"@types/estree" "*"
"@types/eslint@*":
- version "8.21.1"
- resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.21.1.tgz#110b441a210d53ab47795124dbc3e9bb993d1e7c"
- integrity sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==
+ version "8.37.0"
+ resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.37.0.tgz#29cebc6c2a3ac7fea7113207bf5a828fdf4d7ef1"
+ integrity sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==
dependencies:
"@types/estree" "*"
"@types/json-schema" "*"
@@ -2284,9 +2337,9 @@
integrity sha512-Vu8l+UGcshYmV1VWwULgnV/2RDbBaO6i2Ptx7nd//oJPIZGhoI1YLST4VKagD2Pq/Bc2/7zvtvhM7F3p4SN7kQ==
"@types/jsdom@^21.0.0":
- version "21.1.0"
- resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-21.1.0.tgz#219f15e3370da3f85d18fe02ae86bda7ff66104a"
- integrity sha512-leWreJOdnuIxq9Y70tBVm/bvTuh31DSlF/r4l7Cfi4uhVQqLHD0Q4v301GMisEMwwbMgF7ZKxuZ+Jbd4NcdmRw==
+ version "21.1.1"
+ resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-21.1.1.tgz#e59e26352071267b507bf04d51841a1d7d3e8617"
+ integrity sha512-cZFuoVLtzKP3gmq9eNosUL1R50U+USkbLtUQ1bYVgl/lKp0FZM7Cq4aIHAL8oIvQ17uSHi7jXPtfDOdjPwBE7A==
dependencies:
"@types/node" "*"
"@types/tough-cookie" "*"
@@ -2337,9 +2390,9 @@
integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==
"@types/node@*", "@types/[email protected]", "@types/node@>=10.0.0", "@types/node@^10.1.0", "@types/node@^14.15.0":
- version "14.18.37"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.37.tgz#0bfcd173e8e1e328337473a8317e37b3b14fd30d"
- integrity sha512-7GgtHCs/QZrBrDzgIJnQtuSvhFSwhyYSI2uafSwZoNt1iOGhEN5fwNrQMjtONyHm9+/LoA4453jH0CMYcr06Pg==
+ version "14.18.42"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.42.tgz#fa39b2dc8e0eba61bdf51c66502f84e23b66e114"
+ integrity sha512-xefu+RBie4xWlK8hwAzGh3npDz/4VhF6icY/shU+zv/1fNn+ZVG7T7CRwe9LId9sAYRPxI+59QBPuKL3WpyGRg==
"@types/parse-glob@*":
version "3.0.29"
@@ -2453,9 +2506,9 @@
integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==
"@types/yargs@^17.0.0":
- version "17.0.22"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.22.tgz#7dd37697691b5f17d020f3c63e7a45971ff71e9a"
- integrity sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==
+ version "17.0.24"
+ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.24.tgz#b3ef8d50ad4aa6aecf6ddc97c580a00f5aa11902"
+ integrity sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==
dependencies:
"@types/yargs-parser" "*"
@@ -3184,9 +3237,9 @@ [email protected]:
unpipe "1.0.0"
bonjour-service@^1.0.11:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.1.0.tgz#424170268d68af26ff83a5c640b95def01803a13"
- integrity sha512-LVRinRB3k1/K0XzZ2p58COnWvkQknIY6sf0zF2rpErvcJXpMBttEPQSxK+HEXSS9VmpZlDoDnQWv8ftJT20B0Q==
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.1.1.tgz#960948fa0e0153f5d26743ab15baf8e33752c135"
+ integrity sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==
dependencies:
array-flatten "^2.1.2"
dns-equal "^1.0.0"
@@ -3225,21 +3278,19 @@ browser-process-hrtime@^1.0.0:
resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
-browser-sync-client@^2.28.3:
- version "2.28.3"
- resolved "https://registry.yarnpkg.com/browser-sync-client/-/browser-sync-client-2.28.3.tgz#cc9c35430235c131b3ab15138f1d8ef2b204b9a4"
- integrity sha512-SMsnGkyXlySVLBWRrXdnTdtQCy0Sl5UoiF8BVtigj9S49DaPWQiesbsyq+uJBUKgpyNve+cvfpBU3KSfIp6oLQ==
+browser-sync-client@^2.29.1:
+ version "2.29.1"
+ resolved "https://registry.yarnpkg.com/browser-sync-client/-/browser-sync-client-2.29.1.tgz#a07b50cbf0d0529418f545c30c87047e0b2dd04d"
+ integrity sha512-aESnjt3rU7CZpzjyqzhIC2UJ3MVhzRis7cPKkGbyYWDf/wnbxyRa3fFenF3Qx9061/guY3HHhD67uiTVV26DVg==
dependencies:
etag "1.8.1"
fresh "0.5.2"
mitt "^1.1.3"
- rxjs "^5.5.6"
- typescript "^4.6.2"
-browser-sync-ui@^2.28.3:
- version "2.28.3"
- resolved "https://registry.yarnpkg.com/browser-sync-ui/-/browser-sync-ui-2.28.3.tgz#6ed7469a9d557e04c264106cbeb7032fc175f09d"
- integrity sha512-Mj5M+O3jroGp5hlO6pDfUo19wzUTIuvGyzaRrJAYUgsSkpFacrX+MLCjN9VbZm9fYXbtHyIsnIUUIlYag87wgQ==
+browser-sync-ui@^2.29.1:
+ version "2.29.1"
+ resolved "https://registry.yarnpkg.com/browser-sync-ui/-/browser-sync-ui-2.29.1.tgz#21c201a8e61aa2eaa4eebfa144066392eb8e625f"
+ integrity sha512-MB7SAiUgVUrhipO2xyO1sheC9H0+LKXPQ3L1tQWcZ3AgizBnUNKAqDZPSwe4grNSa8o8ImSAwJp7lMS6XYy1Dw==
dependencies:
async-each-series "0.1.1"
chalk "4.1.2"
@@ -3250,12 +3301,12 @@ browser-sync-ui@^2.28.3:
stream-throttle "^0.1.3"
browser-sync@^2.26.7, browser-sync@^2.27.7:
- version "2.28.3"
- resolved "https://registry.yarnpkg.com/browser-sync/-/browser-sync-2.28.3.tgz#ff4c4a7b8e905f20d5ff517ecb0b4ba82c234896"
- integrity sha512-gublDeevvAuypnc01SQNGL8fkm4RdIkEagnAJ8Tl9mvr2td3Pl4nVIg5S6fcgoMDEWb8IT7nUHG9YwTATn/k2g==
+ version "2.29.1"
+ resolved "https://registry.yarnpkg.com/browser-sync/-/browser-sync-2.29.1.tgz#a21c9152b93589d7500f7c147cc3657713f2c2c3"
+ integrity sha512-WXy9HMJVQaNUTPjmai330E2fnDA6W84l/vBILGkYu9yHXIpWw1gJYjdQWDfEhLFljYUHNTN9jM3GCej2T55m+g==
dependencies:
- browser-sync-client "^2.28.3"
- browser-sync-ui "^2.28.3"
+ browser-sync-client "^2.29.1"
+ browser-sync-ui "^2.29.1"
bs-recipes "1.3.4"
bs-snippet-injector "^2.0.1"
chalk "4.1.2"
@@ -3367,7 +3418,7 @@ c8@~7.5.0:
yargs "^16.0.0"
yargs-parser "^20.0.0"
[email protected], cacache@^17.0.0:
[email protected]:
version "17.0.4"
resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.0.4.tgz#5023ed892ba8843e3b7361c26d0ada37e146290c"
integrity sha512-Z/nL3gU+zTUjz5pCA5vVjYM8pmaw2kxM7JEiE0fv3w77Wj+sFbi70CrBruUWH0uNcEdvLDixFpgA2JM4F4DBjA==
@@ -3410,6 +3461,25 @@ cacache@^16.1.0:
tar "^6.1.11"
unique-filename "^2.0.0"
+cacache@^17.0.0:
+ version "17.0.5"
+ resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.0.5.tgz#6dbec26c11f1f6a2b558bc11ed3316577c339ebc"
+ integrity sha512-Y/PRQevNSsjAPWykl9aeGz8Pr+OI6BYM9fYDNMvOkuUiG9IhG4LEmaYrZZZvioMUEQ+cBCxT0v8wrnCURccyKA==
+ dependencies:
+ "@npmcli/fs" "^3.1.0"
+ fs-minipass "^3.0.0"
+ glob "^9.3.1"
+ lru-cache "^7.7.1"
+ minipass "^4.0.0"
+ minipass-collect "^1.0.2"
+ minipass-flush "^1.0.5"
+ minipass-pipeline "^1.2.4"
+ p-map "^4.0.0"
+ promise-inflight "^1.0.1"
+ ssri "^10.0.0"
+ tar "^6.1.11"
+ unique-filename "^3.0.0"
+
call-bind@^1.0.0, call-bind@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
@@ -3428,15 +3498,10 @@ camelcase@^5.0.0, camelcase@^5.3.1:
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
-caniuse-lite@^1.0.30001449:
- version "1.0.30001465"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001465.tgz#c1b715bbb4ff6fdc20a4827e0afe9f4374fca217"
- integrity sha512-HvjgL3MYAJjceTDCcjRnQGjwUz/5qec9n7JPOzUursUoOTIsYCSDOb1l7RsnZE8mjbxG78zVRCKfrBXyvChBag==
-
-caniuse-lite@^1.0.30001464:
- version "1.0.30001466"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001466.tgz#c1e6197c540392e09709ecaa9e3e403428c53375"
- integrity sha512-ewtFBSfWjEmxUgNBSZItFSmVtvk9zkwkl1OfRZlKA8slltRN+/C/tuGVrF9styXkN36Yu3+SeJ1qkXxDEyNZ5w==
+caniuse-lite@^1.0.30001449, caniuse-lite@^1.0.30001464:
+ version "1.0.30001473"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001473.tgz#3859898b3cab65fc8905bb923df36ad35058153c"
+ integrity sha512-ewDad7+D2vlyy+E4UJuVfiBsU69IL+8oVmTuZnH5Q6CIUbxNfI50uVpRHbUPDD6SUaN2o0Lh4DhTrvLG/Tn1yg==
caseless@~0.12.0:
version "0.12.0"
@@ -3947,9 +4012,9 @@ deep-is@^0.1.3, deep-is@~0.1.3:
integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
deepmerge@^4.2.2:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.0.tgz#65491893ec47756d44719ae520e0e2609233b59b"
- integrity sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==
+ version "4.3.1"
+ resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
+ integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
default-gateway@^6.0.3:
version "6.0.3"
@@ -4049,9 +4114,9 @@ dns-equal@^1.0.0:
integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==
dns-packet@^5.2.2:
- version "5.4.0"
- resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.4.0.tgz#1f88477cf9f27e78a213fb6d118ae38e759a879b"
- integrity sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==
+ version "5.5.0"
+ resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.5.0.tgz#f59cbf3396c130957c56a6ad5fd3959ccdc30065"
+ integrity sha512-USawdAUzRkV6xrqTjiAEp6M9YagZEzWcSUaZTcIFAiyQWW1SoI6KyId8y2+/71wbgHKQAKd+iupLv4YvEwYWvA==
dependencies:
"@leichtgewicht/ip-codec" "^2.0.1"
@@ -4146,9 +4211,9 @@ [email protected]:
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
electron-to-chromium@^1.4.284:
- version "1.4.328"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.328.tgz#b4565ffa502542b561cea16086d6d9b916c7095a"
- integrity sha512-DE9tTy2PNmy1v55AZAO542ui+MLC2cvINMK4P2LXGsJdput/ThVG9t+QGecPuAZZSgC8XoI+Jh9M1OG9IoNSCw==
+ version "1.4.345"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.345.tgz#c90b7183b39245cddf0e990337469063bfced6f0"
+ integrity sha512-znGhOQK2TUYLICgS25uaM0a7pHy66rSxbre7l762vg9AUoCcJK+Bu+HCPWpjL/U/kK8/Hf+6E0szAUJSyVYb3Q==
emoji-regex@^8.0.0:
version "8.0.0"
@@ -4338,7 +4403,7 @@ [email protected]:
resolved "https://registry.yarnpkg.com/esbuild-wasm/-/esbuild-wasm-0.17.12.tgz#eca7f7813e5e4110dec3071f2aec2a5626e05f3e"
integrity sha512-YKnoS66cc4klnxt29CbuC/gIkM1kr2h1CJKQGT+h2rQUDm7PfCxRa7lBWuz0Aa6WBBgkHAY4f9PA6BmPlKj0Ew==
[email protected], esbuild@^0.17.0:
[email protected]:
version "0.17.11"
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.11.tgz#9f3122643b21d7e7731e42f18576c10bfa28152b"
integrity sha512-pAMImyokbWDtnA/ufPxjQg0fYo2DDuzAlqwnDvbXqHLphe+m80eF++perYKVm8LeTuj2zUuFXC+xgSVxyoHUdg==
@@ -4394,6 +4459,34 @@ [email protected]:
"@esbuild/win32-ia32" "0.17.12"
"@esbuild/win32-x64" "0.17.12"
+esbuild@^0.17.0:
+ version "0.17.14"
+ resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.14.tgz#d61a22de751a3133f3c6c7f9c1c3e231e91a3245"
+ integrity sha512-vOO5XhmVj/1XQR9NQ1UPq6qvMYL7QFJU57J5fKBKBKxp17uDt5PgxFDb4A2nEiXhr1qQs4x0F5+66hVVw4ruNw==
+ optionalDependencies:
+ "@esbuild/android-arm" "0.17.14"
+ "@esbuild/android-arm64" "0.17.14"
+ "@esbuild/android-x64" "0.17.14"
+ "@esbuild/darwin-arm64" "0.17.14"
+ "@esbuild/darwin-x64" "0.17.14"
+ "@esbuild/freebsd-arm64" "0.17.14"
+ "@esbuild/freebsd-x64" "0.17.14"
+ "@esbuild/linux-arm" "0.17.14"
+ "@esbuild/linux-arm64" "0.17.14"
+ "@esbuild/linux-ia32" "0.17.14"
+ "@esbuild/linux-loong64" "0.17.14"
+ "@esbuild/linux-mips64el" "0.17.14"
+ "@esbuild/linux-ppc64" "0.17.14"
+ "@esbuild/linux-riscv64" "0.17.14"
+ "@esbuild/linux-s390x" "0.17.14"
+ "@esbuild/linux-x64" "0.17.14"
+ "@esbuild/netbsd-x64" "0.17.14"
+ "@esbuild/openbsd-x64" "0.17.14"
+ "@esbuild/sunos-x64" "0.17.14"
+ "@esbuild/win32-arm64" "0.17.14"
+ "@esbuild/win32-ia32" "0.17.14"
+ "@esbuild/win32-x64" "0.17.14"
+
escalade@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
@@ -4489,12 +4582,7 @@ eslint-scope@^7.1.1:
esrecurse "^4.3.0"
estraverse "^5.2.0"
-eslint-visitor-keys@^3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
- integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
-
-eslint-visitor-keys@^3.4.0:
+eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.0:
version "3.4.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz#c7f0f956124ce677047ddbc192a68f999454dedc"
integrity sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==
@@ -5066,6 +5154,16 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.0.6, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
once "^1.3.0"
path-is-absolute "^1.0.0"
+glob@^9.3.0, glob@^9.3.1:
+ version "9.3.2"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-9.3.2.tgz#8528522e003819e63d11c979b30896e0eaf52eda"
+ integrity sha512-BTv/JhKXFEHsErMte/AnfiSv8yYOLLiyH2lTg8vn02O21zWFgHPTfxtgn1QRe7NRgggUhC8hacR2Re94svHqeA==
+ dependencies:
+ fs.realpath "^1.0.0"
+ minimatch "^7.4.1"
+ minipass "^4.2.4"
+ path-scurry "^1.6.1"
+
globals@^11.1.0:
version "11.12.0"
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
@@ -5133,9 +5231,9 @@ gopd@^1.0.1:
get-intrinsic "^1.1.3"
graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9:
- version "4.2.10"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
- integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
+ version "4.2.11"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
+ integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
grapheme-splitter@^1.0.4:
version "1.0.4"
@@ -5416,11 +5514,11 @@ ieee754@^1.1.13:
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
ignore-walk@^6.0.0:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-6.0.1.tgz#f05e232992ebf25fef13613668fea99857e7e8cf"
- integrity sha512-/c8MxUAqpRccq+LyDOecwF+9KqajueJHh8fz7g3YqjMZt+NSfJzx05zrKiXwa2sKwFCzaiZ5qUVfRj0pmxixEA==
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-6.0.2.tgz#c48f48397cf8ef6174fcc28aa5f8c1de6203d389"
+ integrity sha512-ezmQ1Dg2b3jVZh2Dh+ar6Eu2MqNSTkyb32HU2MAQQQX9tKM3q/UQ/9lf03lQ5hW+fOeoMnwxwkleZ0xcNp0/qg==
dependencies:
- minimatch "^6.1.6"
+ minimatch "^7.4.2"
ignore@^5.2.0:
version "5.2.4"
@@ -5861,10 +5959,10 @@ istanbul-reports@^3.0.2:
html-escaper "^2.0.0"
istanbul-lib-report "^3.0.0"
-jasmine-core@^4.0.0, jasmine-core@^4.5.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-4.5.0.tgz#1a6bd0bde3f60996164311c88a0995d67ceda7c3"
- integrity sha512-9PMzyvhtocxb3aXJVOPqBDswdgyAeSB81QnLop4npOpbqnheaTEwPc9ZloQeVswugPManznQBjD8kWDTjlnHuw==
+jasmine-core@^4.0.0, jasmine-core@^4.6.0:
+ version "4.6.0"
+ resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-4.6.0.tgz#6884fc3d5b66bf293e422751eed6d6da217c38f5"
+ integrity sha512-O236+gd0ZXS8YAjFx8xKaJ94/erqUliEkJTDedyE7iHvv4ZVqi+q+8acJxu05/WJDKm512EUNn809In37nWlAQ==
jasmine-core@~2.8.0:
version "2.8.0"
@@ -5889,12 +5987,12 @@ [email protected]:
jasmine-core "~2.8.0"
jasmine@^4.0.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/jasmine/-/jasmine-4.5.0.tgz#8d3c0d0a33a61e4d05c9f9747ee5dfaf6f7b5d3d"
- integrity sha512-9olGRvNZyADIwYL9XBNBst5BTU/YaePzuddK+YRslc7rI9MdTIE4r3xaBKbv2GEmzYYUfMOdTR8/i6JfLZaxSQ==
+ version "4.6.0"
+ resolved "https://registry.yarnpkg.com/jasmine/-/jasmine-4.6.0.tgz#2ecde288da25815c67897bb9b9b91f6709880ce1"
+ integrity sha512-iq7HQ5M8ydNUspjd9vbFW9Lu+6lQ1QLDIqjl0WysEllF5EJZy8XaUyNlhCJVwOx2YFzqTtARWbS56F/f0PzRFw==
dependencies:
glob "^7.1.6"
- jasmine-core "^4.5.0"
+ jasmine-core "^4.6.0"
jasminewd2@^2.1.0:
version "2.2.0"
@@ -5916,9 +6014,9 @@ jju@~1.4.0:
integrity sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==
js-sdsl@^4.1.4:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.3.0.tgz#aeefe32a451f7af88425b11fdb5f58c90ae1d711"
- integrity sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.0.tgz#8b437dbe642daa95760400b602378ed8ffea8430"
+ integrity sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==
js-tokens@^4.0.0:
version "4.0.0"
@@ -6300,7 +6398,7 @@ lru-cache@^6.0.0:
dependencies:
yallist "^4.0.0"
-lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1:
+lru-cache@^7.14.1, lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1:
version "7.18.3"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89"
integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==
@@ -6482,10 +6580,10 @@ minimatch@^5.0.1:
dependencies:
brace-expansion "^2.0.1"
-minimatch@^6.1.0, minimatch@^6.1.6:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-6.2.0.tgz#2b70fd13294178c69c04dfc05aebdb97a4e79e42"
- integrity sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg==
+minimatch@^7.4.1, minimatch@^7.4.2:
+ version "7.4.3"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-7.4.3.tgz#012cbf110a65134bb354ae9773b55256cdb045a2"
+ integrity sha512-5UB4yYusDtkRPbRiy1cqZ1IpGNcJCGlEMG17RKzPddpyiPKoCdwohbED8g4QXT0ewCt8LTkQXuljsUfQ3FKM4A==
dependencies:
brace-expansion "^2.0.1"
@@ -6559,7 +6657,7 @@ minipass@^3.0.0, minipass@^3.1.1, minipass@^3.1.6:
dependencies:
yallist "^4.0.0"
-minipass@^4.0.0:
+minipass@^4.0.0, minipass@^4.0.2, minipass@^4.2.4:
version "4.2.5"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.2.5.tgz#9e0e5256f1e3513f8c34691dd68549e85b2c8ceb"
integrity sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==
@@ -6611,9 +6709,9 @@ [email protected]:
integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
nanoid@^3.3.4:
- version "3.3.4"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
- integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
+ version "3.3.6"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
+ integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
natural-compare-lite@^1.4.0:
version "1.4.0"
@@ -6730,9 +6828,9 @@ npm-bundled@^3.0.0:
npm-normalize-package-bin "^3.0.0"
npm-install-checks@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.0.0.tgz#9a021d8e8b3956d61fd265c2eda4735bcd3d9b83"
- integrity sha512-SBU9oFglRVZnfElwAtF14NivyulDqF1VKqqwNsFW9HDcbHMAPHpRSsVFgKuwFGq/hVvWZExz62Th0kvxn/XE7Q==
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.1.0.tgz#7221210d9d746a40c37bf6c9b6c7a39f85e92998"
+ integrity sha512-udSGENih/5xKh3Ex+L0PtZcOt0Pa+6ppDLnpG5D49/EhMja3LupaY9E/DtJTxyFBwE09ot7Fc+H4DywnZNWTVA==
dependencies:
semver "^7.1.1"
@@ -7121,6 +7219,14 @@ path-parse@^1.0.6, path-parse@^1.0.7:
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
+path-scurry@^1.6.1:
+ version "1.6.3"
+ resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.6.3.tgz#4eba7183d64ef88b63c7d330bddc3ba279dc6c40"
+ integrity sha512-RAmB+n30SlN+HnNx6EbcpoDy9nwdpcGPnEKrJnu6GZoDWBdIjo1UQMVtW2ybtC7LC2oKLcMq8y5g8WnKLiod9g==
+ dependencies:
+ lru-cache "^7.14.1"
+ minipass "^4.0.2"
+
[email protected]:
version "0.1.7"
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
@@ -7272,11 +7378,16 @@ prelude-ls@~1.1.2:
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==
[email protected], prettier@^2.2.1:
[email protected]:
version "2.8.4"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.4.tgz#34dd2595629bfbb79d344ac4a91ff948694463c3"
integrity sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==
+prettier@^2.2.1:
+ version "2.8.7"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.7.tgz#bb79fc8729308549d28fe3a98fce73d2c0656450"
+ integrity sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==
+
pretty-bytes@^5.3.0:
version "5.6.0"
resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb"
@@ -7448,11 +7559,11 @@ read-package-json-fast@^3.0.0:
npm-normalize-package-bin "^3.0.0"
read-package-json@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-6.0.0.tgz#6a741841ad72a40e77a82b9c3c8c10e865bbc519"
- integrity sha512-b/9jxWJ8EwogJPpv99ma+QwtqB7FSl3+V6UXS7Aaay8/5VwMY50oIFooY1UKXMWpfNCM6T/PoGqa5GD1g9xf9w==
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-6.0.1.tgz#566cb06bc05dbddefba4607e9096d5a9efbcd836"
+ integrity sha512-AaHqXxfAVa+fNL07x8iAghfKOds/XXsu7zoouIVsbm7PEbQ3nMWXlvjcbrNLjElnUHWQtAo4QEa0RXuvD4XlpA==
dependencies:
- glob "^8.0.1"
+ glob "^9.3.0"
json-parse-even-better-errors "^3.0.0"
normalize-package-data "^5.0.0"
npm-normalize-package-bin "^3.0.0"
@@ -7728,13 +7839,6 @@ [email protected], rxjs@^7.5.5:
dependencies:
tslib "^2.1.0"
-rxjs@^5.5.6:
- version "5.5.12"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.12.tgz#6fa61b8a77c3d793dbaf270bee2f43f652d741cc"
- integrity sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw==
- dependencies:
- symbol-observable "1.0.1"
-
rxjs@^6.5.3:
version "6.6.7"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
@@ -8040,10 +8144,11 @@ signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7:
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
sigstore@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-1.0.0.tgz#3c7a8bbacf99d0f978276bd29bd94911006b72c7"
- integrity sha512-e+qfbn/zf1+rCza/BhIA//Awmf0v1pa5HQS8Xk8iXrn9bgytytVLqYD0P7NSqZ6IELTgq+tcDvLPkQjNHyWLNg==
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-1.2.0.tgz#ae5b31dac75c2d31e7873897e2862f0d0b205bce"
+ integrity sha512-Fr9+W1nkBSIZCkJQR7jDn/zI0UXNsVpp+7mDQkCnZOIxG9p6yNXBx9xntHsfUyYHE55XDkkVV3+rYbrkzAeesA==
dependencies:
+ "@sigstore/protobuf-specs" "^0.1.0"
make-fetch-happen "^11.0.1"
tuf-js "^1.0.0"
@@ -8411,11 +8516,6 @@ supports-preserve-symlinks-flag@^1.0.0:
resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
[email protected]:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4"
- integrity sha512-Kb3PrPYz4HanVF1LVGuAdW6LoVgIwjUYJGzFe7NDrBLCN4lsV/5J0MFurV+ygS4bRVwrCEt2c7MQ1R2a72oJDw==
-
[email protected]:
version "4.0.0"
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-4.0.0.tgz#5b425f192279e87f2f9b937ac8540d1984b39205"
@@ -8454,7 +8554,7 @@ terser-webpack-plugin@^5.1.3:
serialize-javascript "^6.0.1"
terser "^5.16.5"
[email protected], terser@^5.0.0, terser@^5.16.5:
[email protected]:
version "5.16.6"
resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.6.tgz#f6c7a14a378ee0630fbe3ac8d1f41b4681109533"
integrity sha512-IBZ+ZQIA9sMaXmRZCUMDjNH0D5AQQfdn4WUjHL0+1lF4TP1IHRJbrhb6fNaXWikrYQTSkb7SLxkeXAiy1p7mbg==
@@ -8464,6 +8564,16 @@ [email protected], terser@^5.0.0, terser@^5.16.5:
commander "^2.20.0"
source-map-support "~0.5.20"
+terser@^5.0.0, terser@^5.16.5:
+ version "5.16.8"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.8.tgz#ccde583dabe71df3f4ed02b65eb6532e0fae15d5"
+ integrity sha512-QI5g1E/ef7d+PsDifb+a6nnVgC4F22Bg6T0xrBrz6iloVB4PUkkunp6V8nzoOOZJIzjWVdAGqCdlKlhLq/TbIA==
+ dependencies:
+ "@jridgewell/source-map" "^0.3.2"
+ acorn "^8.5.0"
+ commander "^2.20.0"
+ source-map-support "~0.5.20"
+
test-exclude@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
@@ -8627,11 +8737,11 @@ [email protected], tsutils@^3.0.0, tsutils@^3.21.0:
tslib "^1.8.1"
tuf-js@^1.0.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-1.1.1.tgz#54d3aef2b57a19100789cb72e6295b0fbe583935"
- integrity sha512-WTp382/PR96k0dI4GD5RdiRhgOU0rAC7+lnoih/5pZg3cyb3aNMqDozleEEWwyfT3+FOg7Qz9JU3n6A44tLSHw==
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-1.1.2.tgz#09ca04a89783b739e67dd796f6562e3940628aea"
+ integrity sha512-gBfbnS6khluxjvoFCpRV0fhWT265xNfpiNXOcBX0Ze6HGbPhe93UG5V5DdKcgm/aXsMadnY76l/h6j63GmJS5g==
dependencies:
- "@tufjs/models" "1.0.0"
+ "@tufjs/models" "1.0.1"
make-fetch-happen "^11.0.1"
tunnel-agent@^0.6.0:
@@ -8697,16 +8807,16 @@ [email protected]:
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.2.tgz#891e1a90c5189d8506af64b9ef929fca99ba1ee5"
integrity sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==
-typescript@^4.6.2, typescript@~4.9.0:
- version "4.9.5"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
- integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
-
typescript@~4.8.4:
version "4.8.4"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6"
integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==
+typescript@~4.9.0:
+ version "4.9.5"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
+ integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
+
ua-parser-js@^1.0.33:
version "1.0.34"
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.34.tgz#b33f41c415325839f354005d25a2f588be296976"
|
4a5973c37a3238af73a6f122e81147852a8389c1
|
2018-09-11 02:49:22
|
Filipe Silva
|
build: workaround yarn tgz bug
| false
|
workaround yarn tgz bug
|
build
|
diff --git a/benchmark/aio/package.json b/benchmark/aio/package.json
index 37cdfa474b9a..fce9b14e36f7 100644
--- a/benchmark/aio/package.json
+++ b/benchmark/aio/package.json
@@ -7,8 +7,9 @@
"initialize": "yarn clone && yarn setup && yarn update",
"clone": "(git clone https://github.com/angular/angular --depth 1 || true) && cd angular && git fetch origin dd2a650c3455f3bc0a88f8181758a84aacb25fea && git checkout -f FETCH_HEAD",
"setup": "cd angular && yarn && cd aio && yarn && yarn setup",
+ "update": "cd angular/aio && yarn add ../../../../dist/_angular-devkit_build-angular.tgz --dev",
"//": "Shouldn't need to install the package twice, but the first install seems to leave two @ngtools/webpack installs around.",
- "update": "cd angular/aio && yarn add ../../../../dist/@angular-devkit_build-angular.tgz --dev && yarn add ../../../../dist/_angular-devkit_build-angular.tgz --dev",
+ "postupdate": "cd angular/aio && yarn add ../../../../dist/_angular-devkit_build-angular.tgz --dev",
"benchmark": "cd angular/aio && benchmark --verbose -- yarn ~~build --configuration=stable"
},
"keywords": [],
diff --git a/lib/packages.ts b/lib/packages.ts
index d418943173c4..26eaed8dcf0d 100644
--- a/lib/packages.ts
+++ b/lib/packages.ts
@@ -212,7 +212,9 @@ export const packages: PackageMap =
relative: path.relative(path.dirname(__dirname), pkgRoot),
main: path.resolve(pkgRoot, 'src/index.ts'),
private: packageJson.private,
- tar: path.join(distRoot, name.replace('/', '_') + '.tgz'),
+ // yarn doesn't take kindly to @ in tgz filenames
+ // https://github.com/yarnpkg/yarn/issues/6339
+ tar: path.join(distRoot, name.replace(/\/|@/g, '_') + '.tgz'),
bin,
name,
packageJson,
|
27902c031f407c48ac2e463fed944c93c2f9fc38
|
2017-06-19 23:49:08
|
FrozenPandaz
|
refactor(@ngtools/webpack): refactor bootstrap refactoring
| false
|
refactor bootstrap refactoring
|
refactor
|
diff --git a/packages/@ngtools/webpack/src/loader.ts b/packages/@ngtools/webpack/src/loader.ts
index d8e52aacf171..4b220ccd74da 100644
--- a/packages/@ngtools/webpack/src/loader.ts
+++ b/packages/@ngtools/webpack/src/loader.ts
@@ -187,12 +187,7 @@ function _removeDecorators(refactor: TypeScriptFileRefactor) {
}
-function _replaceBootstrap(plugin: AotPlugin, refactor: TypeScriptFileRefactor) {
- // If bootstrapModule can't be found, bail out early.
- if (!refactor.sourceMatch(/\bbootstrapModule\b/)) {
- return;
- }
-
+function _getNgFactoryPath(plugin: AotPlugin, refactor: TypeScriptFileRefactor) {
// Calculate the base path.
const basePath = path.normalize(plugin.basePath);
const genDir = path.normalize(plugin.genDir);
@@ -202,44 +197,20 @@ function _replaceBootstrap(plugin: AotPlugin, refactor: TypeScriptFileRefactor)
const relativeEntryModulePath = path.relative(basePath, entryModuleFileName);
const fullEntryModulePath = path.resolve(genDir, relativeEntryModulePath);
const relativeNgFactoryPath = path.relative(dirName, fullEntryModulePath);
- const ngFactoryPath = './' + relativeNgFactoryPath.replace(/\\/g, '/');
-
- const allCalls = refactor.findAstNodes(refactor.sourceFile,
- ts.SyntaxKind.CallExpression, true) as ts.CallExpression[];
-
- const bootstraps = allCalls
- .filter(call => call.expression.kind == ts.SyntaxKind.PropertyAccessExpression)
- .map(call => call.expression as ts.PropertyAccessExpression)
- .filter(access => {
- return access.name.kind == ts.SyntaxKind.Identifier
- && access.name.text == 'bootstrapModule';
- });
+ return './' + relativeNgFactoryPath.replace(/\\/g, '/');
+}
- const calls: ts.CallExpression[] = bootstraps
- .reduce((previous, access) => {
- const expressions
- = refactor.findAstNodes(access, ts.SyntaxKind.CallExpression, true) as ts.CallExpression[];
- return previous.concat(expressions);
- }, [])
- .filter((call: ts.CallExpression) => call.expression.kind == ts.SyntaxKind.Identifier)
- .filter((call: ts.CallExpression) => {
- // Find if the expression matches one of the replacement targets
- return !!changeMap[(call.expression as ts.Identifier).text];
- });
- if (calls.length == 0) {
- // Didn't find any dynamic bootstrapping going on.
- return;
- }
-
- // Create the changes we need.
- allCalls
- .filter(call => bootstraps.some(bs => bs == call.expression))
- .forEach((call: ts.CallExpression) => {
- refactor.replaceNode(call.arguments[0], entryModule.className + 'NgFactory');
- });
+function _replacePlatform(
+ refactor: TypeScriptFileRefactor, bootstrapCall: ts.PropertyAccessExpression) {
+ const platforms = (refactor.findAstNodes(bootstrapCall,
+ ts.SyntaxKind.CallExpression, true) as ts.CallExpression[])
+ .filter(call => {
+ return call.expression.kind == ts.SyntaxKind.Identifier;
+ })
+ .filter(call => !!changeMap[(call.expression as ts.Identifier).text]);
- calls.forEach(call => {
+ platforms.forEach(call => {
const platform = changeMap[(call.expression as ts.Identifier).text];
// Replace with mapped replacement
@@ -248,14 +219,70 @@ function _replaceBootstrap(plugin: AotPlugin, refactor: TypeScriptFileRefactor)
// Add the appropriate import
refactor.insertImport(platform.name, platform.importLocation);
});
+}
+
+
+function _replaceBootstrap(refactor: TypeScriptFileRefactor, call: ts.CallExpression) {
+ // If bootstrapModule can't be found, bail out early.
+ if (!call.getText().includes('bootstrapModule')) {
+ return;
+ }
+
+ if (call.expression.kind == ts.SyntaxKind.PropertyAccessExpression) {
+ const access = call.expression as ts.PropertyAccessExpression;
+
+ if (access.name.text === 'bootstrapModule') {
+ _replacePlatform(refactor, access);
+ refactor.replaceNode(access.name, 'bootstrapModuleFactory');
+ }
+ }
+}
+
+
+function _getCaller(node: ts.Node): ts.CallExpression {
+ while (node = node.parent) {
+ if (node.kind === ts.SyntaxKind.CallExpression) {
+ return node as ts.CallExpression;
+ }
+ }
+ return null;
+}
+
- bootstraps
- .forEach((bs: ts.PropertyAccessExpression) => {
- // This changes the call.
- refactor.replaceNode(bs.name, 'bootstrapModuleFactory');
+function _replaceEntryModule(plugin: AotPlugin, refactor: TypeScriptFileRefactor) {
+ const modules = refactor.findAstNodes(refactor.sourceFile, ts.SyntaxKind.Identifier, true)
+ .filter(identifier => identifier.getText() === plugin.entryModule.className)
+ .filter(identifier =>
+ identifier.parent.kind === ts.SyntaxKind.CallExpression ||
+ identifier.parent.kind === ts.SyntaxKind.PropertyAssignment)
+ .filter(node => !!_getCaller(node));
+
+ if (modules.length == 0) {
+ return;
+ }
+
+ const factoryClassName = plugin.entryModule.className + 'NgFactory';
+
+ refactor.insertImport(factoryClassName, _getNgFactoryPath(plugin, refactor));
+
+ modules
+ .forEach(reference => {
+ refactor.replaceNode(reference, factoryClassName);
+ _replaceBootstrap(refactor, _getCaller(reference));
});
+}
+
+
+function _refactorBootstrap(plugin: AotPlugin, refactor: TypeScriptFileRefactor) {
+ const genDir = path.normalize(plugin.genDir);
+ const dirName = path.normalize(path.dirname(refactor.fileName));
+
+ // Bail if in the generated directory
+ if (dirName.startsWith(genDir)) {
+ return;
+ }
- refactor.insertImport(entryModule.className + 'NgFactory', ngFactoryPath);
+ _replaceEntryModule(plugin, refactor);
}
export function removeModuleIdOnlyForTesting(refactor: TypeScriptFileRefactor) {
@@ -410,7 +437,7 @@ export function ngcLoader(this: LoaderContext & { _compilation: any }) {
if (!plugin.skipCodeGeneration) {
return Promise.resolve()
.then(() => _removeDecorators(refactor))
- .then(() => _replaceBootstrap(plugin, refactor));
+ .then(() => _refactorBootstrap(plugin, refactor));
} else {
return Promise.resolve()
.then(() => _replaceResources(refactor))
diff --git a/tests/e2e/assets/webpack/test-server-app/app/app.module.ts b/tests/e2e/assets/webpack/test-server-app/app/app.module.ts
index 6f8407fdfd29..7ef819b3a46e 100644
--- a/tests/e2e/assets/webpack/test-server-app/app/app.module.ts
+++ b/tests/e2e/assets/webpack/test-server-app/app/app.module.ts
@@ -24,4 +24,6 @@ export class HomeView {}
],
bootstrap: [AppComponent]
})
-export class AppModule { }
+export class AppModule {
+ static testProp: string;
+}
diff --git a/tests/e2e/assets/webpack/test-server-app/app/main.ts b/tests/e2e/assets/webpack/test-server-app/app/main.ts
index 9aae9848fbcc..b46758b3ec2d 100644
--- a/tests/e2e/assets/webpack/test-server-app/app/main.ts
+++ b/tests/e2e/assets/webpack/test-server-app/app/main.ts
@@ -2,4 +2,6 @@ import 'core-js/es7/reflect';
import {platformDynamicServer} from '@angular/platform-server';
import {AppModule} from './app.module';
+AppModule.testProp = 'testing';
+
platformDynamicServer().bootstrapModule(AppModule);
diff --git a/tests/e2e/tests/packages/webpack/server.ts b/tests/e2e/tests/packages/webpack/server.ts
index 1ccc7b73fba4..c771ecc5087b 100644
--- a/tests/e2e/tests/packages/webpack/server.ts
+++ b/tests/e2e/tests/packages/webpack/server.ts
@@ -16,5 +16,7 @@ export default function(skipCleaning: () => void) {
+ 'type: undefined, decorators.*Inject.*args: .*DOCUMENT.*'))
.then(() => expectFileToMatch('dist/app.main.js',
new RegExp('AppComponent.ctorParameters = .*MyInjectable'))
+ .then(() => expectFileToMatch('dist/app.main.js',
+ /AppModule.*\.testProp = \'testing\'/)
.then(() => skipCleaning());
}
|
7927bae03c0f05f1f71a0f80862af27bb7917d06
|
2016-08-09 01:55:29
|
PatrickJS
|
fix: enableProdMode
| false
|
enableProdMode
|
fix
|
diff --git a/modules/@angular/universal-next-prototype/hello-world/src/server-express.ts b/modules/@angular/universal-next-prototype/hello-world/src/server-express.ts
index 52baeabc219d..b23022bfd070 100644
--- a/modules/@angular/universal-next-prototype/hello-world/src/server-express.ts
+++ b/modules/@angular/universal-next-prototype/hello-world/src/server-express.ts
@@ -5,12 +5,13 @@ import * as express from 'express';
import * as bodyParser from 'body-parser';
// Angular 2
-import { enableProdMode, ApplicationRef, PlatformRef } from '@angular/core';
+import { enableProdMode, ApplicationRef, PlatformRef, NgZone, APP_ID } from '@angular/core';
+enableProdMode();
+
// Angular 2 Universal
import { expressEngine } from '@angular/express-engine';
// enable prod for faster renders
-enableProdMode();
const app = express();
const ROOT = path.join(path.resolve(__dirname, '..'));
|
852854ae3a2ec92688e94378230f0b345ba589af
|
2018-12-21 22:18:28
|
Renovate Bot
|
build: update @types/glob to version ^7.0.0
| false
|
update @types/glob to version ^7.0.0
|
build
|
diff --git a/package.json b/package.json
index d56471622cb8..9814c6a8bfc3 100644
--- a/package.json
+++ b/package.json
@@ -80,7 +80,7 @@
"@ngtools/json-schema": "^1.1.0",
"@types/copy-webpack-plugin": "^4.4.1",
"@types/express": "^4.16.0",
- "@types/glob": "^5.0.35",
+ "@types/glob": "^7.0.0",
"@types/inquirer": "^0.0.43",
"@types/istanbul": "^0.4.30",
"@types/jasmine": "^2.8.8",
diff --git a/yarn.lock b/yarn.lock
index 9d50f269f80b..3c2d1fc9319e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -294,10 +294,10 @@
dependencies:
"@types/node" "*"
-"@types/glob@^5.0.35":
- version "5.0.35"
- resolved "https://registry.yarnpkg.com/@types/glob/-/glob-5.0.35.tgz#1ae151c802cece940443b5ac246925c85189f32a"
- integrity sha512-wc+VveszMLyMWFvXLkloixT4n0harUIVZjnpzztaZ0nKLuul7Z32iMt2fUFGAaZ4y1XWjFRMtCI5ewvyh4aIeg==
+"@types/glob@^7.0.0":
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575"
+ integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==
dependencies:
"@types/events" "*"
"@types/minimatch" "*"
|
285c0b8a534fedae06c93f989719346ee96c00d7
|
2016-08-19 14:02:54
|
PatrickJS
|
style: comments
| false
|
comments
|
style
|
diff --git a/examples/next-hello-world/src/app/index.ts b/examples/next-hello-world/src/app/index.ts
index 2c02582f12b1..ec64399f5314 100644
--- a/examples/next-hello-world/src/app/index.ts
+++ b/examples/next-hello-world/src/app/index.ts
@@ -25,7 +25,7 @@ export class App implements OnInit {
this.jsonp.request('https://api.github.com?callback=JSON_CALLBACK')
.subscribe((res) => {
var json = res.json();
- console.log('wat', json);
+ // console.log('wat', json);
this.response = json;
// console.log('doneeeee')
});
diff --git a/examples/next-hello-world/src/main.node.ts b/examples/next-hello-world/src/main.node.ts
index 6e5bbf7c16d3..105458e4deb9 100644
--- a/examples/next-hello-world/src/main.node.ts
+++ b/examples/next-hello-world/src/main.node.ts
@@ -42,13 +42,11 @@ export function main(document, config?: any) {
}
// ngDoCheck() {
// console.log('ngDoCheck');
+ // return true;
// }
- // ngOnStable() {
- // console.log('ngOnStable');
- // }
- // ngOnRendered() {
- // console.log('ngOnRendered');
- // }
+ ngOnStable() {
+ console.log('ngOnStable');
+ }
ngOnRendered() {
console.log('ngOnRendered');
}
|
f126f8d34b087dd3a916dfb93cd255aac4d6c309
|
2025-03-14 23:57:43
|
Charles Lyding
|
fix(@schematics/angular): ensure module discovery checks for an NgModule decorator
| false
|
ensure module discovery checks for an NgModule decorator
|
fix
|
diff --git a/packages/schematics/angular/utility/find-module.ts b/packages/schematics/angular/utility/find-module.ts
index 71f4c41926a5..69e10dc1368e 100644
--- a/packages/schematics/angular/utility/find-module.ts
+++ b/packages/schematics/angular/utility/find-module.ts
@@ -59,7 +59,7 @@ export function findModuleFromOptions(host: Tree, options: ModuleOptions): Path
);
for (const sc of candidateFiles) {
- if (host.exists(sc)) {
+ if (host.exists(sc) && host.readText(sc).includes('@NgModule')) {
return normalize(sc);
}
}
diff --git a/packages/schematics/angular/utility/find-module_spec.ts b/packages/schematics/angular/utility/find-module_spec.ts
index 7570121ea790..9680f15949c8 100644
--- a/packages/schematics/angular/utility/find-module_spec.ts
+++ b/packages/schematics/angular/utility/find-module_spec.ts
@@ -92,16 +92,25 @@ describe('find-module', () => {
options = { name: 'foo' };
});
- it('should find a module', () => {
- tree.create('/projects/my-proj/src/app.module.ts', '');
+ it('should find a module with a decorator', () => {
+ tree.create('/projects/my-proj/src/app.module.ts', '@NgModule');
options.module = 'app.module.ts';
options.path = '/projects/my-proj/src';
const modPath = findModuleFromOptions(tree, options) as string;
expect(modPath).toEqual('/projects/my-proj/src/app.module.ts');
});
+ it('should not find module-like file without a decorator', () => {
+ tree.create('/projects/my-proj/src/app.module.ts', '');
+ options.module = 'app.module.ts';
+ options.path = '/projects/my-proj/src';
+ expect(() => findModuleFromOptions(tree, options) as string).toThrowError(
+ /Specified module 'app.module.ts' does not exist/,
+ );
+ });
+
it('should find a module when name has underscore', () => {
- tree.create('/projects/my-proj/src/feature_module/app_test.module.ts', '');
+ tree.create('/projects/my-proj/src/feature_module/app_test.module.ts', '@NgModule');
options.path = '/projects/my-proj/src';
options.name = 'feature_module/new_component';
const modPath = findModuleFromOptions(tree, options) as string;
@@ -109,7 +118,7 @@ describe('find-module', () => {
});
it('should find a module when name has uppercase', () => {
- tree.create('/projects/my-proj/src/featureModule/appTest.module.ts', '');
+ tree.create('/projects/my-proj/src/featureModule/appTest.module.ts', '@NgModule');
options.path = '/projects/my-proj/src';
options.name = 'featureModule/newComponent';
const modPath = findModuleFromOptions(tree, options) as string;
@@ -117,7 +126,7 @@ describe('find-module', () => {
});
it('should find a module if flat is true', () => {
- tree.create('/projects/my-proj/src/module/app_test.module.ts', '');
+ tree.create('/projects/my-proj/src/module/app_test.module.ts', '@NgModule');
options.path = '/projects/my-proj/src';
options.flat = true;
options.name = '/module/directive';
@@ -126,7 +135,7 @@ describe('find-module', () => {
});
it('should find a module in a sub dir', () => {
- tree.create('/projects/my-proj/src/admin/foo.module.ts', '');
+ tree.create('/projects/my-proj/src/admin/foo.module.ts', '@NgModule');
options.name = 'other/test';
options.module = 'admin/foo';
options.path = '/projects/my-proj/src';
@@ -135,7 +144,7 @@ describe('find-module', () => {
});
it('should find a module in a sub dir (2)', () => {
- tree.create('/projects/my-proj/src/admin/foo.module.ts', '');
+ tree.create('/projects/my-proj/src/admin/foo.module.ts', '@NgModule');
options.name = 'admin/hello';
options.module = 'foo';
options.path = '/projects/my-proj/src';
@@ -144,7 +153,7 @@ describe('find-module', () => {
});
it('should find a module using custom ext', () => {
- tree.create('/projects/my-proj/src/app_module.ts', '');
+ tree.create('/projects/my-proj/src/app_module.ts', '@NgModule');
options.module = 'app';
options.path = '/projects/my-proj/src';
options.moduleExt = '_module.ts';
@@ -164,7 +173,7 @@ describe('find-module', () => {
});
it('should ignore custom ext if module or ${module}.ts exists', () => {
- tree.create('/projects/my-proj/src/app.module.ts', '');
+ tree.create('/projects/my-proj/src/app.module.ts', '@NgModule');
options.path = '/projects/my-proj/src';
options.moduleExt = '_module.ts';
let modPath;
|
36dad06fe0e7675b207a8dfad4ec71a5f8de36e7
|
2016-03-07 09:04:12
|
gdi2290
|
chore(universal): update folder paths
| false
|
update folder paths
|
chore
|
diff --git a/modules/universal/package.json b/modules/universal/package.json
index 53e24b06e199..cd17a94ed51e 100644
--- a/modules/universal/package.json
+++ b/modules/universal/package.json
@@ -1,15 +1,16 @@
{
"name": "angular2-universal-preview",
- "main": "dist/server/index.js",
+ "typings": "dist/node/index.d.ts",
+ "main": "dist/node/index.js",
"browser": "dist/browser/index.js",
"files": [
"src",
- "browser",
- "server",
- "universal.d.ts",
- "dist"
+ "dist",
+ "parse5.d.ts",
+ "parse5.js",
+ "polyfills.js",
+ "global.js"
],
- "typings": "universal.d.ts",
"typescript": {
"definition": "universal.d.ts"
},
@@ -38,7 +39,7 @@
"angular2-express-engine": "file:../express-engine",
"angular2-hapi-engine": "file:../hapi-engine",
"preboot": "file:../preboot",
- "typescript": "^1.7.3"
+ "typescript": "^1.8.7"
},
"dependencies": {
"angular2-express-engine": "*",
|
End of preview. Expand
in Data Studio
No dataset card yet
- Downloads last month
- 16