-
-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
3,873 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
$MyPath = Split-Path -Path $MyInvocation.MyCommand.Path -Parent | ||
|
||
# yarn first, because it usually has the most problems | ||
Set-Location $MyPath/yarn; yarn --version; yarn run verify:ci | ||
Set-Location $MyPath/vite; npm run verify:ci | ||
Set-Location $MyPath/webpack; npm run verify:ci | ||
Set-Location $MyPath/angular; npm run verify:ci | ||
Set-Location $MyPath/next; npm run verify:ci | ||
Set-Location $MyPath/pnpm; pnpm run verify:ci | ||
|
||
# yarn example is instable because we can't refence local file based dependencies | ||
Set-Location $MyPath/yarn; yarn run verify:ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
MyPath=$(realpath $(dirname $0)) | ||
|
||
# yarn first, because it usually has the most problems | ||
cd $MyPath/yarn; yarn --version; yarn run verify:ci | ||
cd $MyPath/vite; npm run verify:ci | ||
cd $MyPath/webpack; npm run verify:ci | ||
cd $MyPath/angular; npm run verify:ci | ||
cd $MyPath/next; npm run verify:ci | ||
cd $MyPath/pnpm; pnpm run verify:ci | ||
|
||
# yarn example is instable because we can't refence local file based dependencies | ||
cd $MyPath/yarn; yarn run verify:ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/** | ||
* @type {import('next').NextConfig} | ||
*/ | ||
export default { | ||
typescript: { | ||
tsconfigPath: './tsconfig.json', | ||
}, | ||
output: 'standalone', | ||
webpack: (config, { isServer }) => { | ||
if (!isServer) { | ||
config.resolve.fallback.fs = false; | ||
config.resolve.fallback.module = false; | ||
config.resolve.fallback.vm = false; | ||
} | ||
|
||
return config; | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,4 @@ lib | |
node_modules | ||
*.tsbuildinfo | ||
.yarn | ||
yarn.lock | ||
.pnp* |
Oops, something went wrong.