Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: richardtallent/vite-plugin-singlefile
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 700f32de5f92d597c7cad957550ec46499549824
Choose a base ref
...
head repository: richardtallent/vite-plugin-singlefile
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 886cdd720b85fb4fc34f1dc2bb56eb3a1e24195c
Choose a head ref
  • 3 commits
  • 5 files changed
  • 2 contributors

Commits on Sep 22, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    10cf57f View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3a2d748 View commit details
  3. v0.12.0

    richardtallent committed Sep 22, 2022
    Copy the full SHA
    886cdd7 View commit details
Showing with 28 additions and 18 deletions.
  1. +6 −0 CHANGELOG.md
  2. +1 −0 README.md
  3. +9 −9 package-lock.json
  4. +5 −4 package.json
  5. +7 −5 src/index.ts
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -32,3 +32,9 @@
| | | Make jest a dev dependency only (#40) |
| 2022-07-23 | 0.11.0 | Widen version range for Vite peer dependency to support Vite 3.0 (#46, #47, thanks @valtism!) |
| 2022-08-06 | 0.11.1 | Check for null code due to worker URLs (#49, thanks @daniel-kun!) |
| 2022-08-06 | 0.12.0 | Set config `base` to `undefined` in recommended options (#56) |
| | | Remove optional `type` attribute from style tags (#53, thanks @kidonng!) |
| | | Remove all `VITE_PRELOAD` markers (#55) |
| | | Point package.json to types file (#54, thanks @kidonng!) |
| | | Update various dependencies |
| | | Add README note about SVG (#52) |
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -72,6 +72,7 @@ generate a warning (same as any unrecognized assets).
### Caveats

- `favicon` resources are not inlined by Vite, and this plugin doesn't do that either.
- Inlining of SVG isn't supported directly by Vite, so it isn't supported directly here either. You'll need to use something like `https://github.com/jpkleemans/vite-svg-loader`, or put your SVG directly into the template.
- There may be other situations where referenced files aren't inlined by Vite and aren't caught by this plugin either. I've done little testing so far, I just wanted to get this out there first.
- This is my first Vite and first Rollup plugin. I have no idea what I'm doing. PRs welcome.
- This plugin uses dual packages to support both ESM and CommonJS users. This _should_ work automatically. Details:
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "vite-plugin-singlefile",
"version": "0.11.1",
"version": "0.12.0",
"description": "Vite plugin for inlining JavaScript and CSS resources",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"types": "./dist/esm/declarations/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
@@ -42,18 +43,18 @@
"micromatch": "^4.0.5"
},
"peerDependencies": {
"vite": "^2.9.13 || ^3.0.0"
"vite": "^3.1.3",
"rollup": "~2.78.0"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/micromatch": "^4.0.2",
"@types/node": ">18.7.18",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"jest": "^29.0.3",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"typescript": "^4.8.3"
},
"prettier": {
12 changes: 7 additions & 5 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -23,14 +23,14 @@ const defaultConfig = { useRecommendedBuildConfig: true, removeViteModuleLoader:
export function replaceScript(html: string, scriptFilename: string, scriptCode: string, removeViteModuleLoader = false): string {
const reScript = new RegExp(`<script([^>]*?) src="[./]*${scriptFilename}"([^>]*)></script>`)
const preloadMarker = '"__VITE_PRELOAD__"'
const newCode = scriptCode.replace(preloadMarker, "void 0")
const newCode = scriptCode.replaceAll(preloadMarker, "void 0")
const inlined = html.replace(reScript, (_, beforeSrc, afterSrc) => `<script${beforeSrc}${afterSrc}>\n${newCode}\n</script>`)
return removeViteModuleLoader ? _removeViteModuleLoader(inlined) : inlined
}

export function replaceCss(html: string, scriptFilename: string, scriptCode: string): string {
const reCss = new RegExp(`<link[^>]*? href="[./]*${scriptFilename}"[^>]*?>`)
const inlined = html.replace(reCss, `<style type="text/css">\n${scriptCode}\n</style>`)
const inlined = html.replace(reCss, `<style>\n${scriptCode}\n</style>`)
return inlined
}

@@ -101,6 +101,8 @@ const _useRecommendedBuildConfig = (config: UserConfig) => {
config.build.cssCodeSplit = false
// Avoids the extra step of testing Brotli compression, which isn't really pertinent to a file served locally.
config.build.reportCompressedSize = false
// Subfolder bases are not supported, and shouldn't be needed because we're embedding everything.
config.base = undefined

if (!config.build.rollupOptions) config.build.rollupOptions = {}
if (!config.build.rollupOptions.output) config.build.rollupOptions.output = {}
@@ -110,9 +112,9 @@ const _useRecommendedBuildConfig = (config: UserConfig) => {
out.inlineDynamicImports = true
}

if (!Array.isArray(config.build.rollupOptions.output)) {
updateOutputOptions(config.build.rollupOptions.output)
if (Array.isArray(config.build.rollupOptions.output)) {
for (const o in config.build.rollupOptions.output) updateOutputOptions(o as OutputOptions)
} else {
config.build.rollupOptions.output.forEach(updateOutputOptions)
updateOutputOptions(config.build.rollupOptions.output as OutputOptions)
}
}