File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {
2+ "format": {
3+ "comments": false
4+ }
5+ }
Original file line number Diff line number Diff line change 1+ ## 0.8.1
2+ - Fixed reallocating on pre-supplied buffer in ` inflateSync ` and ` unzlibSync `
3+ - Minor documentation fixes
14## 0.8.0
25- BREAKING: synchronous decompression functions now take an options object rather than an output buffer as a second parameter
36 - ` inflateSync(compressed, outBuf) ` is now ` inflateSync(compressed, { out: outBuf }) `
Original file line number Diff line number Diff line change 1+ {
2+ "sideEffects" : true
3+ }
Original file line number Diff line number Diff line change 22import { manifest , version } from '@parcel/service-worker'
33
44const precacheVersion = version
5- const precacheFiles = manifest . filter ( u => / \. ( i c o ) $ / . test ( u ) ) ;
5+ const precacheFiles = manifest . filter ( u => ! / \. ( i c o ) $ / . test ( u ) ) ;
6+
7+ const sw = self as unknown as ServiceWorkerGlobalScope
68
79const ch = ( ) => caches . open ( precacheVersion ) ;
810
Original file line number Diff line number Diff line change 9191 "build:lib" : " tsc && tsc --project tsconfig.esm.json && npm run build:rewrite && npm run build:umd" ,
9292 "build:umd" : " SC=buildUMD npm run script" ,
9393 "build:rewrite" : " SC=rewriteBuilds npm run script" ,
94- "watch:demo" : " parcel demo/index.html --no-cache" ,
9594 "build:demo" : " tsc --project tsconfig.demo.json && parcel build demo/index.html --no-cache --public-url \" ./\" && SC=cpGHPages npm run script" ,
9695 "build:docs" : " typedoc --plugin typedoc-plugin-markdown --hideBreadcrumbs --readme none --disableSources --excludePrivate --excludeProtected --githubPages false --out docs/ src/index.ts" ,
9796 "test" : " TS_NODE_PROJECT=test/tsconfig.json uvu -b -r ts-node/register test" ,
You can’t perform that action at this time.
0 commit comments