@luzzle/web.tools 0.0.85 → 0.0.87
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/dist/src/commands/assets/command.d.ts +0 -1
- package/dist/src/commands/assets/command.js +3 -3
- package/dist/src/commands/assets/command.js.map +1 -1
- package/dist/src/commands/assets/index.d.ts +2 -2
- package/dist/src/commands/assets/index.js +4 -7
- package/dist/src/commands/assets/index.js.map +1 -1
- package/dist/src/commands/assets/index.test.js +40 -51
- package/dist/src/commands/assets/index.test.js.map +1 -1
- package/dist/src/commands/config/command.js +8 -6
- package/dist/src/commands/config/command.js.map +1 -1
- package/dist/src/commands/config/index.d.ts +3 -3
- package/dist/src/commands/config/index.js +10 -8
- package/dist/src/commands/config/index.js.map +1 -1
- package/dist/src/commands/config/index.test.js +16 -14
- package/dist/src/commands/config/index.test.js.map +1 -1
- package/dist/src/commands/opengraph/command.d.ts +0 -1
- package/dist/src/commands/opengraph/command.js +3 -3
- package/dist/src/commands/opengraph/command.js.map +1 -1
- package/dist/src/commands/opengraph/command.test.js +6 -3
- package/dist/src/commands/opengraph/command.test.js.map +1 -1
- package/dist/src/commands/opengraph/index.d.ts +2 -2
- package/dist/src/commands/opengraph/index.js +3 -7
- package/dist/src/commands/opengraph/index.js.map +1 -1
- package/dist/src/commands/opengraph/index.test.js +32 -34
- package/dist/src/commands/opengraph/index.test.js.map +1 -1
- package/dist/src/commands/sqlite/command.d.ts +0 -1
- package/dist/src/commands/sqlite/command.js +3 -2
- package/dist/src/commands/sqlite/command.js.map +1 -1
- package/dist/src/commands/sqlite/command.test.js +6 -2
- package/dist/src/commands/sqlite/command.test.js.map +1 -1
- package/dist/src/commands/sqlite/index.d.ts +2 -1
- package/dist/src/commands/sqlite/index.js +3 -7
- package/dist/src/commands/sqlite/index.js.map +1 -1
- package/dist/src/commands/sqlite/index.test.js +11 -11
- package/dist/src/commands/sqlite/index.test.js.map +1 -1
- package/dist/src/commands/sync/command.js +3 -2
- package/dist/src/commands/sync/command.js.map +1 -1
- package/dist/src/commands/sync/command.test.js +6 -2
- package/dist/src/commands/sync/command.test.js.map +1 -1
- package/dist/src/commands/sync/index.d.ts +2 -2
- package/dist/src/commands/sync/index.js +4 -7
- package/dist/src/commands/sync/index.js.map +1 -1
- package/dist/src/commands/sync/index.test.js +17 -20
- package/dist/src/commands/sync/index.test.js.map +1 -1
- package/dist/src/commands/theme/command.d.ts +0 -1
- package/dist/src/commands/theme/command.js +3 -2
- package/dist/src/commands/theme/command.js.map +1 -1
- package/dist/src/commands/theme/command.test.js +6 -4
- package/dist/src/commands/theme/command.test.js.map +1 -1
- package/dist/src/commands/theme/index.d.ts +2 -1
- package/dist/src/commands/theme/index.js +1 -3
- package/dist/src/commands/theme/index.js.map +1 -1
- package/dist/src/commands/theme/index.test.js +9 -8
- package/dist/src/commands/theme/index.test.js.map +1 -1
- package/dist/src/lib/config.d.ts +2 -0
- package/dist/src/lib/config.js +13 -0
- package/dist/src/lib/config.js.map +1 -0
- package/dist/src/lib/config.test.d.ts +1 -0
- package/dist/src/lib/config.test.js +42 -0
- package/dist/src/lib/config.test.js.map +1 -0
- package/dist/src/lib/database.d.ts +2 -0
- package/dist/src/lib/database.js +10 -0
- package/dist/src/lib/database.js.map +1 -0
- package/dist/src/lib/database.test.d.ts +1 -0
- package/dist/src/lib/database.test.js +36 -0
- package/dist/src/lib/database.test.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luzzle/web.tools",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.87",
|
|
4
4
|
"author": "eleith",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"lint": "eslint src",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@luzzle/core": "0.0.37",
|
|
45
|
-
"@luzzle/web.utils": "0.0.
|
|
45
|
+
"@luzzle/web.utils": "0.0.20",
|
|
46
46
|
"lightningcss": "^1.30.2",
|
|
47
47
|
"puppeteer": "24.19.0",
|
|
48
48
|
"sharp": "0.33.5",
|