Skip to content

Commit 7d7413c

Browse files
committed
test: added the requireStack to loader.js
1 parent 5092346 commit 7d7413c

2,341 files changed

Lines changed: 40681 additions & 55360 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,6 @@ module.exports = {
314314
// Custom rules from eslint-plugin-node-core
315315
'node-core/no-unescaped-regexp-dot': 'error',
316316
'node-core/no-duplicate-requires': 'error',
317-
'node-core/prefer-proto': 'error',
318317
},
319318
globals: {
320319
ByteLengthQueuingStrategy: 'readable',

.github/workflows/authors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: '0' # This is required to actually get all the authors
2020
persist-credentials: false
2121
- run: tools/update-authors.mjs # Run the AUTHORS tool
22-
- uses: gr2m/create-or-update-pull-request-action@77596e3166f328b24613f7082ab30bf2d93079d5
22+
- uses: gr2m/create-or-update-pull-request-action@dc1726cbf4dd3ce766af4ec29cfb660e0125e8ee
2323
# Creates a PR or update the Action's existing PR, or
2424
# no-op if the base branch is already up-to-date.
2525
env:

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
if: github.event.pull_request.draft == false
3535
strategy:
3636
matrix:
37-
windows: [windows-2019, windows-2022]
37+
windows: [windows-2019]
3838
fail-fast: false
3939
runs-on: ${{ matrix.windows }}
4040
steps:

.github/workflows/coverage-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ permissions:
3737
jobs:
3838
coverage-windows:
3939
if: github.event.pull_request.draft == false
40-
runs-on: windows-2022
40+
runs-on: windows-2019
4141
steps:
4242
- uses: actions/checkout@v3
4343
with:

.github/workflows/find-inactive-collaborators.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: tools/find-inactive-collaborators.mjs
3434

3535
- name: Open pull request
36-
uses: gr2m/create-or-update-pull-request-action@77596e3166f328b24613f7082ab30bf2d93079d5
36+
uses: gr2m/create-or-update-pull-request-action@dc1726cbf4dd3ce766af4ec29cfb660e0125e8ee
3737
# Creates a PR or update the Action's existing PR, or
3838
# no-op if the base branch is already up-to-date.
3939
env:

.github/workflows/find-inactive-tsc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: tools/find-inactive-tsc.mjs >> $GITHUB_ENV
4343

4444
- name: Open pull request
45-
uses: gr2m/create-or-update-pull-request-action@77596e3166f328b24613f7082ab30bf2d93079d5
45+
uses: gr2m/create-or-update-pull-request-action@dc1726cbf4dd3ce766af4ec29cfb660e0125e8ee
4646
# Creates a PR or update the Action's existing PR, or
4747
# no-op if the base branch is already up-to-date.
4848
env:

.github/workflows/license-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
persist-credentials: false
2323
- run: ./tools/license-builder.sh # Run the license builder tool
24-
- uses: gr2m/create-or-update-pull-request-action@77596e3166f328b24613f7082ab30bf2d93079d5
24+
- uses: gr2m/create-or-update-pull-request-action@dc1726cbf4dd3ce766af4ec29cfb660e0125e8ee
2525
# Creates a PR or update the Action's existing PR, or
2626
# no-op if the base branch is already up-to-date.
2727
env:

.github/workflows/timezone-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: echo "${{ env.new_version }}" > test/fixtures/tz-version.txt
4141

4242
- name: Open Pull Request
43-
uses: gr2m/create-or-update-pull-request-action@77596e3166f328b24613f7082ab30bf2d93079d5 # Create a PR or update the Action's existing PR
43+
uses: gr2m/create-or-update-pull-request-action@dc1726cbf4dd3ce766af4ec29cfb660e0125e8ee # Create a PR or update the Action's existing PR
4444
env:
4545
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}
4646
with:

.github/workflows/tools.yml

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -77,16 +77,6 @@ jobs:
7777
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
7878
./tools/update-undici.sh
7979
fi
80-
- id: postject
81-
subsystem: test
82-
label: test
83-
run: |
84-
NEW_VERSION=$(npm view postject dist-tags.latest)
85-
CURRENT_VERSION=$(node -p "require('./test/fixtures/postject-copy/node_modules/postject/package.json').version")
86-
if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then
87-
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
88-
./tools/dep_updaters/update-postject.sh
89-
fi
9080
- id: base64
9181
subsystem: deps
9282
label: dependencies
@@ -144,24 +134,14 @@ jobs:
144134
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
145135
./tools/dep_updaters/update-simdutf.sh "$NEW_VERSION"
146136
fi
147-
- id: ada
148-
subsystem: deps
149-
label: dependencies
150-
run: |
151-
NEW_VERSION=$(gh api repos/ada-url/ada/releases/latest -q '.tag_name|ltrimstr("v")')
152-
CURRENT_VERSION=$(grep "#define ADA_VERSION" ./deps/ada/ada.h | sed -n "s/^.*VERSION \(.*\)/\1/p")
153-
if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then
154-
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
155-
./tools/dep_updaters/update-ada.sh "$NEW_VERSION"
156-
fi
157137
steps:
158138
- uses: actions/checkout@v3
159139
with:
160140
persist-credentials: false
161141
- run: ${{ matrix.run }}
162142
env:
163143
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}
164-
- uses: gr2m/create-or-update-pull-request-action@77596e3166f328b24613f7082ab30bf2d93079d5
144+
- uses: gr2m/create-or-update-pull-request-action@dc1726cbf4dd3ce766af4ec29cfb660e0125e8ee
165145
# Creates a PR or update the Action's existing PR, or
166146
# no-op if the base branch is already up-to-date.
167147
env:

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,10 @@ tools/*/*.i.tmp
136136
/deps/npm/node_modules/.bin/
137137
# Respect V8's .gitignore
138138
!deps/v8/**
139-
# Ignore the libuv book
139+
# Ignore the libuv book and GitHub templates
140+
/deps/uv/.github/
140141
/deps/uv/docs/code/
141142
/deps/uv/docs/src/guide/
142-
# Ignore .github directories
143-
/deps/**/.github/
144143
# Ignore dependencies fetched by tools/v8/fetch_deps.py
145144
/deps/.cipd
146145

0 commit comments

Comments
 (0)