@quasar/icongenie 3.1.0 → 4.0.0
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/lib/utils/parse-argv.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { existsSync, lstatSync } from 'node:fs'
|
|
3
3
|
import { resolve, normalize, isAbsolute } from 'node:path'
|
|
4
|
+
import { fileURLToPath } from 'node:url'
|
|
4
5
|
import untildify from 'untildify'
|
|
5
6
|
|
|
6
7
|
import { getPngSize } from './get-png-size.js'
|
|
@@ -149,7 +150,9 @@ function icon (value, argv) {
|
|
|
149
150
|
if (!value) {
|
|
150
151
|
warn(`No source icon file specified, so using the sample one`)
|
|
151
152
|
argv.icon = normalize(
|
|
152
|
-
|
|
153
|
+
fileURLToPath(
|
|
154
|
+
new URL('../../samples/icongenie-icon.png', import.meta.url)
|
|
155
|
+
)
|
|
153
156
|
)
|
|
154
157
|
return
|
|
155
158
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quasar/icongenie",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "A Quasar tool for generating all your Quasar App's icons and splashscreens",
|
|
5
5
|
"bin": {
|
|
6
6
|
"icongenie": "./bin/icongenie.js"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"url": "git+https://github.com/quasarframework/quasar.git"
|
|
15
15
|
},
|
|
16
16
|
"engines": {
|
|
17
|
-
"node": ">=
|
|
17
|
+
"node": ">= 18.12.0"
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
20
20
|
"vuejs",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"@hapi/joi": "^17.1.1",
|
|
46
46
|
"cross-spawn": "^7.0.2",
|
|
47
47
|
"elementtree": "^0.1.7",
|
|
48
|
-
"fast-glob": "^3.2
|
|
49
|
-
"fs-extra": "^11.
|
|
48
|
+
"fast-glob": "^3.3.2",
|
|
49
|
+
"fs-extra": "^11.2.0",
|
|
50
50
|
"imagemin": "^8.0.1",
|
|
51
51
|
"imagemin-pngquant": "^9.0.2",
|
|
52
52
|
"is-png": "^3.0.1",
|
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
"png2icons": "^2.0.1",
|
|
56
56
|
"potrace": "^2.1.5",
|
|
57
57
|
"read-chunk": "^4.0.3",
|
|
58
|
-
"sharp": "^0.32.
|
|
59
|
-
"svgo": "^3.0
|
|
60
|
-
"untildify": "^
|
|
61
|
-
"update-notifier": "^
|
|
58
|
+
"sharp": "^0.32.6",
|
|
59
|
+
"svgo": "^3.2.0",
|
|
60
|
+
"untildify": "^5.0.0",
|
|
61
|
+
"update-notifier": "^7.0.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"eslint": "^8.
|
|
65
|
-
"eslint-plugin-n": "^
|
|
64
|
+
"eslint": "^8.57.0",
|
|
65
|
+
"eslint-plugin-n": "^16.6.2"
|
|
66
66
|
},
|
|
67
67
|
"resolutions": {
|
|
68
68
|
"minimist": "^1.2.8"
|