_id stringlengths 21 254 | text stringlengths 1 93.7k | metadata dict |
|---|---|---|
angular/tools/symbol-extractor/symbol_extractor_spec/BUILD.bazel_0_416 | load("//tools:defaults.bzl", "ts_library")
package(default_visibility = ["//visibility:public"])
ts_library(
name = "es2015_class_output_lib",
srcs = ["es2015_class_output.ts"],
)
filegroup(
name = "es2015_class_output",
srcs = [":es2015_class_output_lib"],
output_group = "es6_sources",
)
filegr... | {
"end_byte": 416,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/symbol-extractor/symbol_extractor_spec/BUILD.bazel"
} |
angular/tools/symbol-extractor/symbol_extractor_spec/drop_trailing_suffix.js_0_319 | /**
* @license
* Copyright Google LLC 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.dev/license
*/
!(function () {
'use strict';
var constant$1 = 1,
method$2 = function () {},
clazz$3 = class {};
})();
| {
"end_byte": 319,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/symbol-extractor/symbol_extractor_spec/drop_trailing_suffix.js"
} |
angular/tools/manual_api_docs/generate_block_api_json.ts_0_1573 | /**
* @license
* Copyright Google LLC 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.dev/license
*/
import {DocEntry, DocEntryWithSourceInfo, EntryType} from '@angular/compiler-cli';
import {readFileSync, writeFileSy... | {
"end_byte": 1573,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/generate_block_api_json.ts"
} |
angular/tools/manual_api_docs/generate_element_api_json.ts_0_1249 | /**
* @license
* Copyright Google LLC 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.dev/license
*/
import {DocEntry, EntryType} from '@angular/compiler-cli';
import {readFileSync, writeFileSync} from 'fs';
import {b... | {
"end_byte": 1249,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/generate_element_api_json.ts"
} |
angular/tools/manual_api_docs/generate_element_api_json.bzl_0_1989 | load("@build_bazel_rules_nodejs//:providers.bzl", "run_node")
def _generate_element_api_json(ctx):
"""Implementation of the generate_element_api_json rule"""
# Define arguments that will be passed to the underlying nodejs program.
args = ctx.actions.args()
# Use a param file for consistency with othe... | {
"end_byte": 1989,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/generate_element_api_json.bzl"
} |
angular/tools/manual_api_docs/BUILD.bazel_0_823 | load("//tools:defaults.bzl", "nodejs_binary", "ts_library")
package(default_visibility = ["//visibility:public"])
ts_library(
name = "generate_element_api_json_lib",
srcs = ["generate_element_api_json.ts"],
deps = [
"//packages/compiler-cli",
"@npm//@types/node",
],
)
nodejs_binary(
... | {
"end_byte": 823,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/BUILD.bazel"
} |
angular/tools/manual_api_docs/generate_block_api_json.bzl_0_1971 | load("@build_bazel_rules_nodejs//:providers.bzl", "run_node")
def _generate_block_api_json(ctx):
"""Implementation of the generate_block_api_json rule"""
# Define arguments that will be passed to the underlying nodejs program.
args = ctx.actions.args()
# Use a param file for consistency with other do... | {
"end_byte": 1971,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/generate_block_api_json.bzl"
} |
angular/tools/manual_api_docs/blocks/defer.md_0_2689 | A type of [block](api/core/@defer) that can be used to defer load the JavaScript for components,
directives and pipes used inside a component template.
## Syntax
```angular-html
@defer ( on <trigger>; when <condition>; prefetch on <trigger>; prefetch when <condition> ) {
<!-- deferred template fragment -->
<calen... | {
"end_byte": 2689,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/blocks/defer.md"
} |
angular/tools/manual_api_docs/blocks/let.md_0_1436 | `@let` allows you to define a local variable and re-use it across the template.
## Syntax
```angular-html
@let name = user.name;
@let data = data$ | async;
```
## Description
`@let` declarations are similar to [JavaScript's `let`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let) and... | {
"end_byte": 1436,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/blocks/let.md"
} |
angular/tools/manual_api_docs/blocks/if.md_0_585 | The `@if` block conditionally displays its content when its condition expression is truthy.
## Syntax
```angular-html
@if (a > b) {
{{a}} is greater than {{b}}
} @else if (b > a) {
{{a}} is less than {{b}}
} @else {
{{a}} is equal to {{b}}
}
```
## Description
Content is added and removed from the DOM based ... | {
"end_byte": 585,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/blocks/if.md"
} |
angular/tools/manual_api_docs/blocks/for.md_0_2411 | The `@for` block repeatedly renders content of a block for each item in a collection.
## Syntax
```angular-html
@for (item of items; track item.name) {
<li>{{ item.name }}</li>
} @empty {
<li>There are no items.</li>
}
```
## Description
The `@for` block renders its content in response to changes in a collection. C... | {
"end_byte": 2411,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/blocks/for.md"
} |
angular/tools/manual_api_docs/blocks/BUILD.bazel_0_405 | load("//tools/manual_api_docs:generate_block_api_json.bzl", "generate_block_api_json")
load("//adev/shared-docs/pipeline/api-gen/rendering:render_api_to_html.bzl", "render_api_to_html")
package(default_visibility = ["//visibility:public"])
generate_block_api_json(
name = "blocks",
srcs = glob(["*.md"]),
)
re... | {
"end_byte": 405,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/blocks/BUILD.bazel"
} |
angular/tools/manual_api_docs/blocks/switch.md_0_713 | The `@switch` block is inspired by the JavaScript `switch` statement:
## Syntax
```angular-html
@switch (condition) {
@case (caseA) {
Case A.
}
@case (caseB) {
Case B.
}
@default {
Default case.
}
}
```
## Description
The `@switch` blocks displays content selected by one of the cases matchin... | {
"end_byte": 713,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/blocks/switch.md"
} |
angular/tools/manual_api_docs/test/dummy.md_0_35 | ## This is the content of the file
| {
"end_byte": 35,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/test/dummy.md"
} |
angular/tools/manual_api_docs/test/BUILD.bazel_0_338 | load("//tools/manual_api_docs:generate_element_api_json.bzl", "generate_element_api_json")
load("//tools/manual_api_docs:generate_block_api_json.bzl", "generate_block_api_json")
generate_element_api_json(
name = "element_test",
srcs = ["dummy.md"],
)
generate_block_api_json(
name = "block_test",
srcs ... | {
"end_byte": 338,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/test/BUILD.bazel"
} |
angular/tools/manual_api_docs/elements/ng-content.md_0_642 | The `<ng-content>` element specifies where to project content inside a component template.
## Attributes
| Attribute | Description |
|---------------|-------------------------------------------------------------------------|
| `select` | CSS select... | {
"end_byte": 642,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/elements/ng-content.md"
} |
angular/tools/manual_api_docs/elements/ng-container.md_0_4087 | A special element that can hold structural directives without adding new elements to the DOM.
The `<ng-container>` allows us to use structural directives without any extra element, making sure
that the only DOM changes being applied are those dictated by the directives themselves.
This not only increases performance ... | {
"end_byte": 4087,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/elements/ng-container.md"
} |
angular/tools/manual_api_docs/elements/ng-template.md_0_2505 | Angular's `<ng-template>` element defines a template that is not rendered by default.
With `<ng-template>`, you can define template content that is only being rendered by Angular when
you, whether directly or indirectly, specifically instruct it to do so, allowing you to have full
control over how and when the content... | {
"end_byte": 2505,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/elements/ng-template.md"
} |
angular/tools/manual_api_docs/elements/BUILD.bazel_0_417 | load("//tools/manual_api_docs:generate_element_api_json.bzl", "generate_element_api_json")
load("//adev/shared-docs/pipeline/api-gen/rendering:render_api_to_html.bzl", "render_api_to_html")
package(default_visibility = ["//visibility:public"])
generate_element_api_json(
name = "elements",
srcs = glob(["*.md"]... | {
"end_byte": 417,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/tools/manual_api_docs/elements/BUILD.bazel"
} |
angular/integration/npm_package_archives.bzl_0_1571 | # The @npm packages at the root node_modules are used by integration tests
# with `file:../../node_modules/foobar` references
NPM_PACKAGE_ARCHIVES = [
"@babel/core",
"@rollup/plugin-babel",
"@rollup/plugin-node-resolve",
"@rollup/plugin-commonjs",
"check-side-effects",
"jasmine",
"http-serve... | {
"end_byte": 1571,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/integration/npm_package_archives.bzl"
} |
angular/integration/index.bzl_0_5034 | # Copyright Google LLC 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.dev/license
"""Angular integration testing
"""
load("//integration:npm_package_archives.bzl", "NPM_PACKAGE_ARCHIVES", "npm_package_archive_label")
load(... | {
"end_byte": 5034,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/integration/index.bzl"
} |
angular/integration/README.md_0_7636 | # Integration tests for Angular
This directory contains end-to-end tests for Angular. Each directory is a self-contained application
that exactly mimics how a user might expect Angular to work, so they allow high-fidelity
reproductions of real-world issues.
For this to work, we first build the Angular distribution vi... | {
"end_byte": 7636,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/integration/README.md"
} |
angular/integration/README.md_7636_8916 | ## Debugging Size Regressions
If size regression occurs, one way to debug is to get a build which shows the code before and after. Here are the steps to do that.
1. Check out both the `main` branch as well as your change (let's refer to it as `change` branch) into two different working locations. (A suggested way to ... | {
"end_byte": 8916,
"start_byte": 7636,
"url": "https://github.com/angular/angular/blob/main/integration/README.md"
} |
angular/integration/run_tests.sh_0_1618 | #!/usr/bin/env bash
set -u -e -o pipefail
# see https://circleci.com/docs/2.0/env-vars/#circleci-built-in-environment-variables
CI=${CI:-false}
cd "$(dirname "$0")"
# If we aren't running on CircleCI, we do not shard tests because this would be the job of
# Bazel eventually. For now, we just run all tests sequentia... | {
"end_byte": 1618,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/integration/run_tests.sh"
} |
angular/integration/update-lock-files.mjs_0_1065 | #!/usr/bin/env node
/**
* Script that deletes all `yarn.lock` files for integration tests and
* re-builds them from scratch. This script is useful as lock files in
* integration tests are not necessarily up-to-date, given dependencies
* being linked from the root `/package.json`, or locally-built 1st party
* pack... | {
"end_byte": 1065,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/integration/update-lock-files.mjs"
} |
angular/integration/check-dependencies.js_0_3580 | #!/usr/bin/env node
/**
* **Usage:**
* ```
* node check-depenencies <project-directory-path>
* ```
*
* Checks the non-local dependencies of the specified project and ensures that:
* - Exact versions (not version ranges) are specified in the project's `package.json`.
* This reduces the probability of installi... | {
"end_byte": 3580,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/integration/check-dependencies.js"
} |
angular/integration/cli-elements-universal/README.md_0_1083 | # CliElementsUniversal
This project tests the integration of Angular Elements (`@angular/elements`) with SSR (via `@angular/platform-server`).
The project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 11.1.4.
Support for Angular Elements was added with `ng add @angular/elements` and... | {
"end_byte": 1083,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/README.md"
} |
angular/integration/cli-elements-universal/yarn.lock_0_83 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1 | {
"end_byte": 83,
"start_byte": 0,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_86_4418 | "@ampproject/remapping@2.3.0", "@ampproject/remapping@^2.2.0":
version "2.3.0"
resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4"
integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==
de... | {
"end_byte": 4418,
"start_byte": 86,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_4420_9094 | "@angular/build@19.0.0-next.5":
version "19.0.0-next.5"
resolved "https://registry.yarnpkg.com/@angular/build/-/build-19.0.0-next.5.tgz#93164c08207e1a7f1f3f89383b67378b83acefbd"
integrity sha512-HtNagdxJ9RqZ+TcMmfdh8/ok5KOWLWYGFRYwyyo3NDyqtny2+NsZFevxFM9rk55oEe0fyqMUtnApHh6wH1rUDA==
dependencies:
"@ampproje... | {
"end_byte": 9094,
"start_byte": 4420,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_9096_13796 | "@babel/core@7.25.2", "@babel/core@^7.23.9", "@babel/core@^7.7.5":
version "7.25.2"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.2.tgz#ed8eec275118d7613e77a352894cd12ded8eba77"
integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==
dependencie... | {
"end_byte": 13796,
"start_byte": 9096,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_13798_18597 | "@babel/helper-member-expression-to-functions@^7.24.8":
version "7.24.8"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz#6155e079c913357d24a4c20480db7c712a5c3fb6"
integrity sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvP... | {
"end_byte": 18597,
"start_byte": 13798,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_18599_23184 | "@babel/helper-string-parser@^7.24.8":
version "7.24.8"
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d"
integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==
"@babel/... | {
"end_byte": 23184,
"start_byte": 18599,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_23186_28230 | "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.25.0":
version "7.25.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.0.tgz#3a82a70e7cb7294ad2559465ebcb871dfbf078fb"
integrity sha... | {
"end_byte": 28230,
"start_byte": 23186,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_28232_33191 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+... | {
"end_byte": 33191,
"start_byte": 28232,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_33193_38304 | "@babel/plugin-transform-block-scoped-functions@^7.24.7":
version "7.24.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz#a4251d98ea0c0f399dafe1a35801eaba455bbf1f"
integrity sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtP... | {
"end_byte": 38304,
"start_byte": 33193,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_38306_43492 | "@babel/plugin-transform-exponentiation-operator@^7.24.7":
version "7.24.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz#b629ee22645f412024297d5245bce425c31f9b0d"
integrity sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4E... | {
"end_byte": 43492,
"start_byte": 38306,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_43494_48289 | "@babel/plugin-transform-modules-umd@^7.24.7":
version "7.24.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz#edd9f43ec549099620df7df24e7ba13b5c76efc8"
integrity sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02j... | {
"end_byte": 48289,
"start_byte": 43494,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_48291_53276 | "@babel/plugin-transform-private-methods@^7.25.4":
version "7.25.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.4.tgz#9bbefbe3649f470d681997e0b64a4b254d877242"
integrity sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxS... | {
"end_byte": 53276,
"start_byte": 48291,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_53278_55108 | "@babel/plugin-transform-unicode-escapes@^7.24.7":
version "7.24.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz#2023a82ced1fb4971630a2e079764502c4148e0e"
integrity sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O... | {
"end_byte": 55108,
"start_byte": 53278,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_55110_61220 | "@babel/preset-env@7.25.4":
version "7.25.4"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.25.4.tgz#be23043d43a34a2721cd0f676c7ba6f1481f6af6"
integrity sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==
dependencies:
"@babel/compat-data"... | {
"end_byte": 61220,
"start_byte": 55110,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_61222_65402 | "@babel/template@^7.24.7", "@babel/template@^7.25.0":
version "7.25.0"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.0.tgz#e733dc3134b4fede528c15bc95e89cb98c52592a"
integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==
dependencies:
... | {
"end_byte": 65402,
"start_byte": 61222,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_65404_69143 | "@esbuild/darwin-arm64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a"
integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==
"@esbuild/darwin-arm64@0.23.1... | {
"end_byte": 69143,
"start_byte": 65404,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_69145_72914 | "@esbuild/linux-ia32@0.23.1":
version "0.23.1"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz#3ed2273214178109741c09bd0687098a0243b333"
integrity sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==
"@esbuild/linux-loong64@0.21.5":
... | {
"end_byte": 72914,
"start_byte": 69145,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_72916_76628 | "@esbuild/netbsd-x64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047"
integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==
"@esbuild/netbsd-x64@0.23.1":
ver... | {
"end_byte": 76628,
"start_byte": 72916,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_76630_80815 | "@inquirer/checkbox@^2.5.0":
version "2.5.0"
resolved "https://registry.yarnpkg.com/@inquirer/checkbox/-/checkbox-2.5.0.tgz#41c5c9dd332c0a8fa159be23982ce080d0b199d4"
integrity sha512-sMgdETOfi2dUHT8r7TT1BTKOwNvdDGFDXYWtQ2J69SvlYNntk9I/gJe7r5yvMwwsuKnYbuRs3pNhx4tgNck5aA==
dependencies:
"@inquirer/core" "^9.1... | {
"end_byte": 80815,
"start_byte": 76630,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_80817_84946 | "@inquirer/rawlist@^2.3.0":
version "2.3.0"
resolved "https://registry.yarnpkg.com/@inquirer/rawlist/-/rawlist-2.3.0.tgz#6b2c0da39c1cd855af5608b2d627681cdac7277d"
integrity sha512-zzfNuINhFF7OLAtGHfhwOW2TlYJyli7lOUoJUXw/uyklcwalV6WRXBXtFIicN8rTRK1XTiPWB4UY+YuW8dsnLQ==
dependencies:
"@inquirer/core" "^9.1.0"... | {
"end_byte": 84946,
"start_byte": 80817,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_84948_88824 | "@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
version "0.3.25"
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0"
integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqv... | {
"end_byte": 88824,
"start_byte": 84948,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_88826_92940 | "@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3":
version "3.0.3"
resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz#9edec61b22c3082018a79f6d1c30289ddf3d9d11"
integrity sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLf... | {
"end_byte": 92940,
"start_byte": 88826,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_92942_96941 | "@npmcli/git@^5.0.0":
version "5.0.8"
resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-5.0.8.tgz#8ba3ff8724192d9ccb2735a2aa5380a992c5d3d1"
integrity sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==
dependencies:
"@npmcli/promise-spawn" "^7.0.0"
ini ... | {
"end_byte": 96941,
"start_byte": 92942,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_96943_100802 | "@rollup/rollup-darwin-x64@4.21.3":
version "4.21.3"
resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.3.tgz#0ce8e1e0f349778938c7c90e4bdc730640e0a13e"
integrity sha512-L1M0vKGO5ASKntqtsFEjTq/fD91vAqnzeaF6sfNAy55aD+Hi2pBI5DKwCO+UNDQHWsDViJLqshxOahXyLSh3EA==
"@rollup/rollup-... | {
"end_byte": 100802,
"start_byte": 96943,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_100804_104944 | "@rollup/rollup-win32-x64-msvc@4.21.3":
version "4.21.3"
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.3.tgz#4115233aa1bd5a2060214f96d8511f6247093212"
integrity sha512-fOvu7PCQjAj4eWDEuD8Xz5gpzFqXzGlxHZozHP4b9Jxv9APtdxL6STqztDzMLuRXEc4UpXGGhx029Xgm91QBeA==
"@sc... | {
"end_byte": 104944,
"start_byte": 100804,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_104946_109122 | "@types/bonjour@^3.5.13":
version "3.5.13"
resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.13.tgz#adf90ce1a105e81dd1f9c61fdc5afda1bfb92956"
integrity sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==
dependencies:
"@types/node" "*"
"@types/c... | {
"end_byte": 109122,
"start_byte": 104946,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_109124_113100 | "@types/node@*", "@types/node@^22.5.2":
version "22.5.4"
resolved "https://registry.yarnpkg.com/@types/node/-/node-22.5.4.tgz#83f7d1f65bc2ed223bdbf57c7884f1d5a4fa84e8"
integrity sha512-FDuKUJQm/ju9fT/SeX/6+gBzoPzlVCzfzmGkwKvRHQVxi4BntVbyIwf6a4Xn62mrvndLiml6z/UBXIdEVjQLXg==
dependencies:
undici-types "~6.19.... | {
"end_byte": 113100,
"start_byte": 109124,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_113102_117360 | "@webassemblyjs/ast@1.12.1", "@webassemblyjs/ast@^1.12.1":
version "1.12.1"
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.12.1.tgz#bb16a0e8b1914f979f45864c23819cc3e3f0d4bb"
integrity sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==
dependencies:... | {
"end_byte": 117360,
"start_byte": 113102,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_117362_121271 | "@webassemblyjs/wasm-gen@1.12.1":
version "1.12.1"
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz#a6520601da1b5700448273666a71ad0a45d78547"
integrity sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==
dependencies:
"@webassem... | {
"end_byte": 121271,
"start_byte": 117362,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_121273_125112 | adjust-sourcemap-loader@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz#fc4a0fd080f7d10471f30a7320f25560ade28c99"
integrity sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==
dependencies:
... | {
"end_byte": 125112,
"start_byte": 121273,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_125114_128851 | ansi-colors@4.1.3:
version "4.1.3"
resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b"
integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==
ansi-escapes@^4.3.2:
version "4.3.2"
resolved "http... | {
"end_byte": 128851,
"start_byte": 125114,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_128853_132619 | argparse@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
array-flatten@1.1.1:
version "1.1.1"
resolved "https://regi... | {
"end_byte": 132619,
"start_byte": 128853,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_132621_136635 | babel-plugin-polyfill-corejs2@^0.4.10:
version "0.4.11"
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz#30320dfe3ffe1a336c15afdcdafd6fd615b25e33"
integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q=... | {
"end_byte": 136635,
"start_byte": 132621,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_136637_140745 | blob@0.0.5:
version "0.0.5"
resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683"
integrity sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==
blocking-proxy@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpk... | {
"end_byte": 140745,
"start_byte": 136637,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_140747_144680 | bundle-name@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/bundle-name/-/bundle-name-4.1.0.tgz#f3b96b34160d6431a19d7688135af7cfb8797889"
integrity sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==
dependencies:
run-applescript "^7.0.0"
bytes@3.0... | {
"end_byte": 144680,
"start_byte": 140747,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_144682_148457 | chardet@^0.7.0:
version "0.7.0"
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
"chokidar@>=3.0.0 <4.0.0", chokidar@^3.0.0, chokidar@^3.4.2, choki... | {
"end_byte": 148457,
"start_byte": 144682,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_148459_152493 | clone-deep@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
dependencies:
is-plain-object "^2.0.4"
kind-of "... | {
"end_byte": 152493,
"start_byte": 148459,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_152495_156463 | component-inherit@0.0.3:
version "0.0.3"
resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143"
integrity sha512-w+LhYREhatpVqTESyGFg3NlP6Iu0kEKUHETY9GoZP/pQyW4mHFZuFWRUCIqVPZ36ueVLtoOEZaAqbCF2RDndaA==
compressible@~2.0.16:
version "2.0.... | {
"end_byte": 156463,
"start_byte": 152495,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_156465_160494 | copy-anything@^2.0.1:
version "2.0.6"
resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-2.0.6.tgz#092454ea9584a7b7ad5573062b2a87f5900fc480"
integrity sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==
dependencies:
is-what "^3.14.1"
copy-webpa... | {
"end_byte": 160494,
"start_byte": 156465,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_160496_164239 | cssesc@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
custom-event@~1.0.0:
version "1.0.1"
resolved "https://registry.y... | {
"end_byte": 164239,
"start_byte": 160496,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_164241_168055 | define-data-property@^1.1.4:
version "1.1.4"
resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e"
integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==
dependencies:
es-defin... | {
"end_byte": 168055,
"start_byte": 164241,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_168057_171844 | dom-serializer@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53"
integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==
dependencies:
domelementtype "^2.3.0"
... | {
"end_byte": 171844,
"start_byte": 168057,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_171846_175782 | encodeurl@~2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58"
integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==
encoding@^0.1.13:
version "0.1.13"
resolved "https://reg... | {
"end_byte": 175782,
"start_byte": 171846,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_175784_178942 | error-ex@^1.3.1:
version "1.3.2"
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
dependencies:
is-arrayish "^0.2.1"
es-define-property@^1.... | {
"end_byte": 178942,
"start_byte": 175784,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_178944_182839 | esbuild@^0.21.3:
version "0.21.5"
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d"
integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==
optionalDependencies:
"@esbuild/aix-ppc64" "0.21.5"
"@... | {
"end_byte": 182839,
"start_byte": 178944,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_182841_186764 | eventemitter3@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4"
integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==
events@^3.2.0:
version "3.3.0"
resolved "htt... | {
"end_byte": 186764,
"start_byte": 182841,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_186766_190610 | fast-json-stable-stringify@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
fast-uri@... | {
"end_byte": 190610,
"start_byte": 186766,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_190612_194402 | follow-redirects@^1.0.0:
version "1.15.9"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.9.tgz#a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1"
integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==
foreground-child@^3.1.0:
version "3... | {
"end_byte": 194402,
"start_byte": 190612,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_194404_198029 | gensync@^1.0.0-beta.2:
version "1.0.0-beta.2"
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
get-caller-file@^2.0.1, get-caller-file@^2.0.... | {
"end_byte": 198029,
"start_byte": 194404,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_198031_201745 | globby@^14.0.0:
version "14.0.2"
resolved "https://registry.yarnpkg.com/globby/-/globby-14.0.2.tgz#06554a54ccfe9264e5a9ff8eded46aa1e306482f"
integrity sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==
dependencies:
"@sindresorhus/merge-streams" "^2.1.0"
fast... | {
"end_byte": 201745,
"start_byte": 198031,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_201747_205863 | has-property-descriptors@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854"
integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==
dependencies:
... | {
"end_byte": 205863,
"start_byte": 201747,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_205865_210030 | http-parser-js@>=0.5.1:
version "0.5.8"
resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3"
integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==
http-proxy-agent@^7.0.0:
version "7.0.2"
... | {
"end_byte": 210030,
"start_byte": 205865,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_210032_213892 | ieee754@^1.1.13:
version "1.2.1"
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
ignore-walk@^6.0.4:
version "6.0.5"
resolved "https://registr... | {
"end_byte": 213892,
"start_byte": 210032,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_213894_217596 | ini@^1.3.4:
version "1.3.8"
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
ini@^4.1.3:
version "4.1.3"
resolved "https://registry.yarnpkg.com/ini/-/i... | {
"end_byte": 217596,
"start_byte": 213894,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_217598_221366 | is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
version "4.0.3"
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
dependencies:
is-extglob "^2.... | {
"end_byte": 221366,
"start_byte": 217598,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_221368_225228 | is-unicode-supported@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
is-what@^3.14.1:
version ... | {
"end_byte": 225228,
"start_byte": 221368,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_225230_229339 | istanbul-lib-report@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d"
integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==
dependencies:
istanbul-li... | {
"end_byte": 229339,
"start_byte": 225230,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_229341_233271 | js-yaml@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
dependencies:
argparse "^2.0.1"
jsbn@1.1.0:
version "1.1.0... | {
"end_byte": 233271,
"start_byte": 229341,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_233273_237401 | jsonparse@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==
jsprim@^1.2.2:
version "1.4.2"
resolved "https://registr... | {
"end_byte": 237401,
"start_byte": 233273,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_237403_241344 | less-loader@12.2.0:
version "12.2.0"
resolved "https://registry.yarnpkg.com/less-loader/-/less-loader-12.2.0.tgz#e1e94522f6abe9e064ef396c29a3151bc6c1b6cc"
integrity sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg==
less@4.2.0:
version "4.2.0"
resolved "https://re... | {
"end_byte": 241344,
"start_byte": 237403,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_241346_245074 | locate-path@^7.1.0:
version "7.2.0"
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a"
integrity sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==
dependencies:
p-locate "^6.0.0"
lodash.debounce@... | {
"end_byte": 245074,
"start_byte": 241346,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_245076_248975 | make-fetch-happen@^13.0.0, make-fetch-happen@^13.0.1:
version "13.0.1"
resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-13.0.1.tgz#273ba2f78f45e1f3a6dca91cede87d9fa4821e36"
integrity sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==
depen... | {
"end_byte": 248975,
"start_byte": 245076,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_248977_252986 | mime@^2.4.5:
version "2.6.0"
resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367"
integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==
mimic-fn@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com... | {
"end_byte": 252986,
"start_byte": 248977,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_252988_256837 | minipass@^3.0.0:
version "3.3.6"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a"
integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==
dependencies:
yallist "^4.0.0"
minipass@^5.0.0:
version... | {
"end_byte": 256837,
"start_byte": 252988,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_256839_260783 | nanoid@^3.3.7:
version "3.3.7"
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8"
integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
needle@^3.1.0:
version "3.3.1"
resolved "https://registry.yarnpkg... | {
"end_byte": 260783,
"start_byte": 256839,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_260785_264980 | normalize-package-data@^6.0.0:
version "6.0.2"
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-6.0.2.tgz#a7bc22167fe24025412bcff0a9651eb768b03506"
integrity sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==
dependencies:
ho... | {
"end_byte": 264980,
"start_byte": 260785,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_264982_268958 | object-assign@^4.0.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
object-inspect@^1.13.1:
version "1.13.2"
res... | {
"end_byte": 268958,
"start_byte": 264982,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_268960_273034 | p-limit@^2.2.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
dependencies:
p-try "^2.0.0"
p-limit@^4.0.0:
version "4.0.... | {
"end_byte": 273034,
"start_byte": 268960,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_273036_276726 | parse-node-version@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b"
integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==
parse5-html-rewriting-stream@7.0.... | {
"end_byte": 276726,
"start_byte": 273036,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_276728_280372 | path-scurry@^1.11.1:
version "1.11.1"
resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2"
integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==
dependencies:
lru-cache "^10.2.0"
minipass... | {
"end_byte": 280372,
"start_byte": 276728,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_280374_284487 | postcss-loader@8.1.1:
version "8.1.1"
resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-8.1.1.tgz#2822589e7522927344954acb55bbf26e8b195dfe"
integrity sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==
dependencies:
cosmiconfig "^9.0.0"
ji... | {
"end_byte": 284487,
"start_byte": 280374,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_284489_288146 | promise-retry@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22"
integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==
dependencies:
err-code "^2.0.2"
retry "... | {
"end_byte": 288146,
"start_byte": 284489,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
angular/integration/cli-elements-universal/yarn.lock_288148_292109 | randombytes@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
dependencies:
safe-buffer "^5.1.0"
range-parser@... | {
"end_byte": 292109,
"start_byte": 288148,
"url": "https://github.com/angular/angular/blob/main/integration/cli-elements-universal/yarn.lock"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.