123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- import replace from "@rollup/plugin-replace";
- import { terser } from "rollup-plugin-terser";
- import fs from "fs";
- const bundledTerserOptions = {
- compress: {
- unsafe: true,
- unsafe_arrows: true,
- unsafe_comps: true,
- unsafe_symbols: true,
- unsafe_proto: true,
- keep_fargs: false,
- passes: 3,
- ecma: "2020"
- }
- };
- const inlineTerserOptions = {
- compress: {
- unsafe: true,
- unsafe_arrows: true,
- unsafe_comps: true,
- unsafe_math: true,
- unsafe_symbols: true,
- unsafe_proto: true,
- keep_fargs: false,
- passes: 3,
- ecma: "2020"
- },
- mangle: {
- properties: {
- reserved: ["codecType", "config", "salt", "iterations", "keys", "password", "encryptionStrength", "encrypted", "signed", "compressed", "level", "zipCrypto", "passwordVerification"]
- }
- }
- };
- const GLOBALS = "const { Array, Object, String, BigInt, Math, Date, Map, URL, Error, Uint8Array, Uint16Array, Uint32Array, DataView, Blob, Promise, TextEncoder, TextDecoder, FileReader, document, crypto, btoa } = globalThis;";
- const GLOBALS_WORKER = "const { Array, Object, Math, Error, Uint8Array, Uint16Array, Uint32Array, Int32Array, DataView, TextEncoder, crypto, postMessage } = globalThis;";
- export default [{
- input: "lib/z-worker.js",
- output: [{
- intro: GLOBALS_WORKER,
- file: "lib/z-worker-inline.js",
- format: "es",
- plugins: [terser(inlineTerserOptions)]
- }]
- }, {
- input: "lib/z-worker-inline-template.js",
- output: [{
- file: "lib/z-worker-inline.js",
- format: "es"
- }],
- plugins: [
- replace({
- preventAssignment: true,
- "__workerCode__": () => fs.readFileSync("lib/z-worker-inline.js").toString()
- }),
- terser(bundledTerserOptions)
- ]
- }, {
- input: ["lib/zip.js"],
- output: [{
- intro: GLOBALS,
- file: "dist/zip.min.js",
- format: "umd",
- name: "zip",
- plugins: [terser(bundledTerserOptions)]
- }, {
- intro: GLOBALS,
- file: "dist/zip.js",
- format: "umd",
- name: "zip"
- }]
- }, {
- input: ["lib/zip-full.js"],
- output: [{
- intro: GLOBALS,
- file: "dist/zip-full.min.js",
- format: "umd",
- name: "zip",
- plugins: [terser(bundledTerserOptions)]
- }, {
- intro: GLOBALS,
- file: "dist/zip-full.js",
- format: "umd",
- name: "zip"
- }]
- }, {
- input: "lib/zip-no-worker.js",
- output: [{
- intro: GLOBALS,
- file: "dist/zip-no-worker.min.js",
- format: "umd",
- name: "zip",
- plugins: [terser(bundledTerserOptions)]
- }]
- }, {
- input: "lib/zip-no-worker-deflate.js",
- output: [{
- intro: GLOBALS,
- file: "dist/zip-no-worker-deflate.min.js",
- format: "umd",
- name: "zip",
- plugins: [terser(bundledTerserOptions)]
- }]
- }, {
- input: "lib/zip-no-worker-inflate.js",
- output: [{
- intro: GLOBALS,
- file: "dist/zip-no-worker-inflate.min.js",
- format: "umd",
- name: "zip",
- plugins: [terser(bundledTerserOptions)]
- }]
- }, {
- input: "lib/zip-fs.js",
- output: [{
- intro: GLOBALS,
- file: "dist/zip-fs.min.js",
- format: "umd",
- name: "zip",
- plugins: [terser(bundledTerserOptions)]
- }, {
- intro: GLOBALS,
- file: "dist/zip-fs.js",
- format: "umd",
- name: "zip"
- }]
- }, {
- input: "index.js",
- output: [{
- intro: GLOBALS,
- file: "dist/zip-fs-full.min.js",
- format: "umd",
- name: "zip",
- plugins: [terser(bundledTerserOptions)]
- }, {
- intro: GLOBALS,
- file: "dist/zip-fs-full.js",
- format: "umd",
- name: "zip"
- }]
- }, {
- input: "lib/z-worker-bootstrap-pako.js",
- output: [{
- intro: GLOBALS_WORKER,
- file: "dist/z-worker-pako.js",
- format: "iife",
- plugins: [terser(bundledTerserOptions)]
- }]
- }, {
- input: "lib/z-worker-bootstrap-fflate.js",
- output: [{
- intro: GLOBALS_WORKER,
- file: "dist/z-worker-fflate.js",
- format: "iife",
- plugins: [terser(bundledTerserOptions)]
- }]
- }, {
- input: "lib/z-worker.js",
- output: [{
- intro: GLOBALS_WORKER,
- file: "dist/z-worker.js",
- format: "iife",
- plugins: [terser(bundledTerserOptions)]
- }]
- }];
|