@iqx-limited/quick-pdf 1.3.2 → 1.3.4
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 +3 -3
- package/dist/.puppeteerrc.cjs +0 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iqx-limited/quick-pdf",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
4
|
"author": "IQX",
|
|
5
5
|
"description": "Converting PDFs to images (📃 to 📸)",
|
|
6
6
|
"type": "module",
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
],
|
|
34
34
|
"repository": "https://github.com/IQXLimited/quickpdf",
|
|
35
35
|
"scripts": {
|
|
36
|
-
"
|
|
36
|
+
"prepare": "npx puppeteer browsers install",
|
|
37
|
+
"build": "npm ci --no-audit && rollup -c",
|
|
37
38
|
"lint": "npx --yes eslint",
|
|
38
39
|
"test": "npm run build && node test/test-cjs.cjs && node test/test-esm.mjs",
|
|
39
40
|
"test:esm": "npm run build && node test/test-esm.mjs",
|
|
@@ -64,7 +65,6 @@
|
|
|
64
65
|
"@types/semver": "^7.5.8",
|
|
65
66
|
"eslint": "^9.20.0",
|
|
66
67
|
"rollup": "^4.34.6",
|
|
67
|
-
"rollup-plugin-copy": "^3.5.0",
|
|
68
68
|
"typescript": "^5.7.3",
|
|
69
69
|
"typescript-eslint": "^8.23.0"
|
|
70
70
|
}
|
package/dist/.puppeteerrc.cjs
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/** @type {import('puppeteer').Configuration} */
|
|
2
|
-
module.exports = {
|
|
3
|
-
// Download Chrome (default `skipDownload: false`).
|
|
4
|
-
chrome: {
|
|
5
|
-
skipDownload: false
|
|
6
|
-
},
|
|
7
|
-
// Download Firefox (default `skipDownload: true`).
|
|
8
|
-
firefox: {
|
|
9
|
-
skipDownload: false
|
|
10
|
-
}
|
|
11
|
-
};
|