This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make module alias configurable and add it to webpack. (#476)
- Loading branch information
1 parent
a03c191
commit a580bc8
Showing
6 changed files
with
168 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* MIT License | ||
* | ||
* Copyright (c) 2019 Choko (choko@curioswitch.org) | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
|
||
import path from 'path'; | ||
|
||
import { DISABLER } from '../scripts/common'; | ||
|
||
// eslint-disable-next-line | ||
const packageJson = require(path.resolve(process.cwd(), 'package.json')); | ||
|
||
interface ResolveOverrides { | ||
[key: string]: string[]; | ||
} | ||
|
||
const packageOverrides = packageJson.curiostack | ||
? packageJson.curiostack.resolveOverrides | ||
: {}; | ||
|
||
export const config: ResolveOverrides = { | ||
'core-js': ['core-js', 'core-js-2'], | ||
...packageOverrides, | ||
}; | ||
|
||
export function rewriteResolveRequest(request: string): string { | ||
for (const [lib, overrides] of Object.entries(config)) { | ||
if (request !== lib && !request.startsWith(`${lib}/`)) { | ||
continue; | ||
} | ||
|
||
const remainingRequest = request.substring(request.indexOf('/') + 1); | ||
for (const override of overrides) { | ||
const rewritten = `${override}/${remainingRequest}`; | ||
DISABLER.DISABLE_ALIAS = true; | ||
try { | ||
require.resolve(rewritten); | ||
// Resolved so we found a working override. | ||
return rewritten; | ||
} catch (e) { | ||
// Fall through to try other overrides. | ||
} finally { | ||
DISABLER.DISABLE_ALIAS = false; | ||
} | ||
} | ||
} | ||
return request; | ||
} |
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
65 changes: 65 additions & 0 deletions
65
common/web/base-web/src/dev/webpack/fallback-resolver/index.ts
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,65 @@ | ||
/* | ||
* MIT License | ||
* | ||
* Copyright (c) 2019 Choko (choko@curioswitch.org) | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
|
||
import Resolver from 'enhanced-resolve/lib/Resolver'; | ||
|
||
import { rewriteResolveRequest } from '../../resolve'; | ||
|
||
type ResolverRequest = import('enhanced-resolve/lib/common-types').ResolverRequest; | ||
|
||
export default class FallbackResolverPlugin { | ||
public apply(resolver: Resolver) { | ||
const tapable = resolver as any; | ||
|
||
const target = tapable.ensureHook('resolve'); | ||
|
||
tapable | ||
.ensureHook('described-resolve') | ||
.tapAsync( | ||
'FallbackResolverPlugin', | ||
( | ||
request: ResolverRequest, | ||
resolveContext: any, | ||
callback: () => void, | ||
) => { | ||
const rewritten = rewriteResolveRequest(request.request); | ||
if (rewritten === request.request) { | ||
return callback(); | ||
} | ||
|
||
// Cast to any since types don't match webpack definition | ||
return (resolver as any).doResolve( | ||
target, | ||
{ | ||
...request, | ||
request: rewritten, | ||
}, | ||
`rewriting ${request.request} to ${rewritten}`, | ||
resolveContext, | ||
callback, | ||
); | ||
}, | ||
); | ||
} | ||
} |
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