1
0
mirror of https://gitcode.com/github-mirrors/react-native-update-cli.git synced 2025-09-16 09:41:38 +08:00
Code Issues Packages Projects Releases Wiki Activity GitHub Gitee

chore: ignore sourcemap

This commit is contained in:
sunnylqm
2024-03-21 21:03:34 +08:00
parent d2ec856756
commit 54f7358357

View File

@@ -235,7 +235,7 @@ async function pack(dir, output) {
}
const childs = fs.readdirSync(root);
for (const name of childs) {
if (name === '.' || name === '..') {
if (name === '.' || name === '..' || name === 'index.bundlejs.map') {
continue;
}
const fullPath = path.join(root, name);