forked from embroider-build/embroider
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request embroider-build#1855 from patricklx/improve-addon-…
…clean addon-dev: incremental updates to output
- Loading branch information
Showing
11 changed files
with
359 additions
and
140 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import walkSync from 'walk-sync'; | ||
import { rmSync } from 'fs'; | ||
import { join } from 'path'; | ||
import type { Plugin } from 'rollup'; | ||
import { existsSync } from 'fs-extra'; | ||
|
||
export default function incremental(): Plugin { | ||
const generatedAssets = new Map(); | ||
const generatedFiles = new Set<string>(); | ||
|
||
function isEqual(v1: string | Uint8Array, v2: string | Uint8Array): boolean { | ||
if (typeof v1 === 'string' && typeof v2 === 'string') { | ||
return v1 === v2; | ||
} | ||
if (Buffer.isBuffer(v1) && Buffer.isBuffer(v2)) { | ||
return v1.equals(v2); | ||
} | ||
return false; | ||
} | ||
|
||
let firstTime = true; | ||
|
||
function initGeneratedFiles(outDir: string) { | ||
if (existsSync(outDir)) { | ||
const files = walkSync(outDir, { | ||
globs: ['*/**'], | ||
directories: false, | ||
}); | ||
for (const file of files) { | ||
generatedFiles.add(file); | ||
} | ||
} | ||
} | ||
|
||
function deleteRemovedFiles(bundle: Record<string, any>, outDir: string) { | ||
for (const file of generatedFiles) { | ||
if (!bundle[file]) { | ||
generatedAssets.delete(file); | ||
rmSync(join(outDir, file)); | ||
} | ||
} | ||
generatedFiles.clear(); | ||
for (const file of Object.keys(bundle)) { | ||
generatedFiles.add(file); | ||
} | ||
} | ||
|
||
function syncFiles(bundle: Record<string, any>) { | ||
for (const checkKey of Object.keys(bundle)) { | ||
if (bundle[checkKey]) { | ||
let module = bundle[checkKey] as any; | ||
let code = module.source || module.code; | ||
if ( | ||
generatedAssets.has(checkKey) && | ||
isEqual(code, generatedAssets.get(checkKey)) | ||
) { | ||
delete bundle[checkKey]; | ||
} else { | ||
generatedAssets.set(checkKey, code); | ||
} | ||
} | ||
} | ||
} | ||
|
||
return { | ||
name: 'incremental', | ||
generateBundle(options, bundle) { | ||
if (firstTime) { | ||
firstTime = false; | ||
initGeneratedFiles(options.dir!); | ||
} | ||
if (existsSync(options.dir!)) { | ||
deleteRemovedFiles(bundle, options.dir!); | ||
} | ||
|
||
syncFiles(bundle); | ||
}, | ||
}; | ||
} |
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
Oops, something went wrong.