Skip to content

Commit 84b89c8

Browse files
ijjkTimer
andauthored
Pre-ncc compiled packages to prevent re-nccing unnecessarily (#11569)
* Pre-ncc compiled packages to prevent re-nccing unnecessarily * Add compiled files * Re-run pre-ncc step * Add check to workflow to ensure pre-compiled doesnt need updating * Update check-pre-compiled script * Add handling for lower case license while nccing * bump Co-authored-by: Joe Haddad <joe.haddad@zeit.co>
1 parent 1f15072 commit 84b89c8

File tree

152 files changed

+1332
-110
lines changed

Some content is hidden

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

152 files changed

+1332
-110
lines changed

.eslintignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ node_modules
33
**/_next/**
44
**/dist/**
55
examples/with-ioc/**
6-
examples/with-kea/**
6+
examples/with-kea/**
7+
packages/next/compiled/**/*

.github/workflows/build_test_deploy.yml

+15-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,20 @@ jobs:
3232
key: ${{ github.sha }}
3333
- run: yarn lint
3434

35+
checkPrecompiled:
36+
name: Check Pre-compiled
37+
runs-on: ubuntu-latest
38+
needs: build
39+
env:
40+
NEXT_TELEMETRY_DISABLED: 1
41+
steps:
42+
- uses: actions/cache@v1
43+
id: restore-build
44+
with:
45+
path: '.'
46+
key: ${{ github.sha }}
47+
- run: ./check-pre-compiled.sh
48+
3549
testAll:
3650
name: Test All
3751
runs-on: ubuntu-latest
@@ -59,7 +73,7 @@ jobs:
5973
testsPass:
6074
name: thank you, next
6175
runs-on: ubuntu-latest
62-
needs: [lint, testAll]
76+
needs: [lint, checkPrecompiled, testAll]
6377
steps:
6478
- run: exit 0
6579

.prettierignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules
22
**/.next/**
33
**/_next/**
4-
**/dist/**
4+
**/dist/**
5+
packages/next/compiled/**

.prettierignore_staged

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
**/.next/**
22
**/_next/**
3-
**/dist/**
3+
**/dist/**
4+
packages/next/compiled/**/*

check-pre-compiled.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
yarn --cwd packages/next ncc-compiled
4+
5+
# Make sure to exit with 1 if there are changes after running ncc-compiled
6+
# step to ensure we get any changes committed
7+
8+
if [[ ! -z $(git status -s) ]];then
9+
echo "Detected changes"
10+
git status
11+
exit 1
12+
fi

lint-staged.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77
.map(filename => `"${isWin ? filename : escape([filename])}"`)
88
.join(' ')
99
return [
10-
`prettier --with-node-modules --ignore-path='./.prettierignore_staged' --write ${escapedFileNames}`,
10+
`prettier --with-node-modules --ignore-path .prettierignore_staged --write ${escapedFileNames}`,
1111
`eslint --no-ignore --max-warnings=0 --fix ${filenames
1212
.map(f => `"${f}"`)
1313
.join(' ')}`,
@@ -19,7 +19,7 @@ module.exports = {
1919
.map(filename => `"${isWin ? filename : escape([filename])}"`)
2020
.join(' ')
2121
return [
22-
`prettier --with-node-modules --ignore-path='./.prettierignore_staged' --write ${escapedFileNames}`,
22+
`prettier --with-node-modules --ignore-path .prettierignore_staged --write ${escapedFileNames}`,
2323
`git add ${escapedFileNames}`,
2424
]
2525
},

packages/next/compiled/amphtml-validator/index.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"name":"amphtml-validator","main":"index.js","author":"The AMP HTML Authors","license":"Apache-2.0"}

packages/next/compiled/arg/index.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"name":"arg","main":"index.js","author":"Josh Junon <junon@zeit.co>","license":"MIT"}

packages/next/compiled/async-retry/index.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"name":"async-retry","main":"index.js","license":"MIT"}

packages/next/compiled/async-sema/index.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"name":"async-sema","main":"index.js","author":"Olli Vanhoja","license":"MIT"}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 Asaf Katz
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

packages/next/compiled/autodll-webpack-plugin/autodll-webpack-plugin.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"name":"autodll-webpack-plugin","main":"autodll-webpack-plugin.js","author":"Asaf Katz","license":"MIT"}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2014-2019 Luís Couto <hello@luiscouto.pt>
2+
3+
MIT License
4+
5+
Permission is hereby granted, free of charge, to any person obtaining
6+
a copy of this software and associated documentation files (the
7+
"Software"), to deal in the Software without restriction, including
8+
without limitation the rights to use, copy, modify, merge, publish,
9+
distribute, sublicense, and/or sell copies of the Software, and to
10+
permit persons to whom the Software is furnished to do so, subject to
11+
the following conditions:
12+
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)