mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-19 06:10:56 +08:00
feat: addCopyRule removeCopyRule helpers
This commit is contained in:

committed by
Nathan Walker

parent
a014bbffb8
commit
1086c6f9b3
36
packages/webpack5/src/helpers/copyRules.ts
Normal file
36
packages/webpack5/src/helpers/copyRules.ts
Normal file
@ -0,0 +1,36 @@
|
||||
import CopyWebpackPlugin from 'copy-webpack-plugin';
|
||||
|
||||
import { getEntryDirPath } from './project';
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export let copyRules = new Set([]);
|
||||
|
||||
export function addCopyRule(glob: string) {
|
||||
copyRules.add(glob);
|
||||
}
|
||||
|
||||
export function removeCopyRule(glob: string) {
|
||||
copyRules.delete(glob);
|
||||
}
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export function applyCopyRules(config) {
|
||||
config.plugin('CopyWebpackPlugin').use(CopyWebpackPlugin, [
|
||||
{
|
||||
patterns: Array.from(copyRules).map((glob) => ({
|
||||
from: glob,
|
||||
context: getEntryDirPath(),
|
||||
noErrorOnMissing: true,
|
||||
globOptions: {
|
||||
dot: false,
|
||||
// todo: ignore AppResources if inside app folder!
|
||||
// ignore: [``]
|
||||
},
|
||||
})),
|
||||
},
|
||||
]);
|
||||
}
|
Reference in New Issue
Block a user