intelliwaketssveltekitv25 0.3.36 → 0.3.41
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.
|
@@ -267,8 +267,8 @@
|
|
|
267
267
|
{/if}
|
|
268
268
|
</div>
|
|
269
269
|
{/if}
|
|
270
|
-
{#if (listItem.
|
|
271
|
-
<a href={listItem.
|
|
270
|
+
{#if (listItem.pathFromItem) && !listItem.linkClick}
|
|
271
|
+
<a href={listItem.pathFromItem}
|
|
272
272
|
tabindex={-1}
|
|
273
273
|
data-sveltekit-preload-data={listItem.dataSvelteKitPreloadData ?? "tap"}
|
|
274
274
|
class='py-1 grid grid-cols-[auto_1fr_auto] overflow-x-hidden'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "intelliwaketssveltekitv25",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.41",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -62,6 +62,9 @@
|
|
|
62
62
|
"vite": "^6.3.5",
|
|
63
63
|
"vitest": "^3.1.3"
|
|
64
64
|
},
|
|
65
|
+
"publishConfig": {
|
|
66
|
+
"access": "public"
|
|
67
|
+
},
|
|
65
68
|
"svelte": "./dist/index.js",
|
|
66
69
|
"types": "./dist/index.d.ts",
|
|
67
70
|
"type": "module",
|
|
@@ -79,7 +82,8 @@
|
|
|
79
82
|
"lint": "prettier --check . && eslint .",
|
|
80
83
|
"format": "prettier --write .",
|
|
81
84
|
"Install-IntelliWake": "pnpm install && pnpm update -P @solidbasisventures/intelliwaketsfoundation",
|
|
82
|
-
"Publish": "pnpm version patch && git
|
|
85
|
+
"Publish": "pnpm version patch --no-git-tag-version && git add -A && git commit -m \"chore: release v$(node -p \\\"require('./package.json').version\\\")\" && pnpm publish --access public && git tag v$(node -p \\\"require('./package.json').version\\\") && git push && git push --tags",
|
|
86
|
+
"PublishOld": "pnpm version patch && git push && pnpm svelte-package && tailwindcss -i src/app.css -o ./dist/app.css --minify && pnpm publish && git push && git push --tags",
|
|
83
87
|
"Version-Minor-Advance": "pnpm version minor"
|
|
84
88
|
}
|
|
85
89
|
}
|