@fest-lib/dom 0.1.3 → 0.1.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/README.md +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<p align="center">
|
|
7
7
|
<a href="https://github.com/fest-live/dom.ts"><img src="https://img.shields.io/github/stars/fest-live/dom.ts?style=flat-square" alt="GitHub stars"></a>
|
|
8
8
|
<a href="https://github.com/fest-live/dom.ts/actions"><img src="https://img.shields.io/github/workflow/status/fest-live/dom.ts/CI?style=flat-square" alt="Build Status"></a>
|
|
9
|
-
<a href="https://www.npmjs.com/package/dom
|
|
9
|
+
<a href="https://www.npmjs.com/package/@fest-lib/dom"><img src="https://img.shields.io/npm/v/dom.ts?style=flat-square" alt="NPM version"></a>
|
|
10
10
|
<a href="https://github.com/fest-live/dom.ts/blob/main/LICENSE"><img src="https://img.shields.io/github/license/fest-live/dom.ts?style=flat-square" alt="License"></a>
|
|
11
11
|
</p>
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fest-lib/dom",
|
|
3
3
|
"description": "DOM utilities for browsers (fest-lib)",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.4",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"sideEffects": true,
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"test": "vite --host 0.0.0.0",
|
|
47
47
|
"dev": "vite --host 0.0.0.0",
|
|
48
48
|
"watch": "vite build --watch",
|
|
49
|
-
"publish": "npm publish --access public",
|
|
49
|
+
"publish": "npm install -D typedoc typedoc-plugin-markdown && npm audit fix && npm run build && npm publish --access public",
|
|
50
50
|
"build": "vite build --config vite.config.js && npm run docs && npm run docs:md",
|
|
51
51
|
"build:publish": "FEST_NPM_IMPORTS=1 vite build --config vite.config.js",
|
|
52
52
|
"prepack": "npm run build:publish",
|
|
@@ -64,5 +64,8 @@
|
|
|
64
64
|
"vite": "^8.0.7",
|
|
65
65
|
"vite-plugin-dynamic-import": ">=1.6.0",
|
|
66
66
|
"vite-plugin-external": ">=6.2.2"
|
|
67
|
+
},
|
|
68
|
+
"dependencies": {
|
|
69
|
+
"@fest-lib/core": "^0.1.0"
|
|
67
70
|
}
|
|
68
71
|
}
|