single-file-cli 1.0.63 → 1.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "single-file-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.65",
|
|
4
4
|
"description": "SingleFile CLI",
|
|
5
5
|
"author": "Gildas Lormeau",
|
|
6
6
|
"license": "AGPL-3.0-or-later",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"jsdom": "22.1.0",
|
|
27
27
|
"puppeteer-core": "21.1.0",
|
|
28
28
|
"selenium-webdriver": "4.11.1",
|
|
29
|
-
"single-file-core": "1.
|
|
29
|
+
"single-file-core": "1.1.74",
|
|
30
30
|
"strong-data-uri": "1.0.6",
|
|
31
31
|
"yargs": "17.7.2"
|
|
32
32
|
},
|
package/rollup.config.dev.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/* global require */
|
|
2
|
+
|
|
3
|
+
const resolve = require("@rollup/plugin-node-resolve");
|
|
3
4
|
|
|
4
5
|
const PLUGINS = [resolve({ moduleDirectories: [".."] })];
|
|
5
6
|
const EXTERNAL = ["single-file-core"];
|
package/rollup.config.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/* global require */
|
|
2
|
+
|
|
3
|
+
const { terser } = require("rollup-plugin-terser");
|
|
4
|
+
const resolve= require("@rollup/plugin-node-resolve");
|
|
3
5
|
|
|
4
6
|
const PLUGINS = [resolve({ moduleDirectories: ["node_modules"] })];
|
|
5
7
|
const EXTERNAL = ["single-file-core"];
|