@ix_waterford/lib 1.0.23 → 1.0.25
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 +32 -32
- package/dist/components.html +1 -1
- package/dist/components.js +23043 -0
- package/dist/components.js.map +1 -0
- package/dist/hooks.html +1 -1
- package/dist/hooks.js +1373 -0
- package/dist/hooks.js.map +1 -0
- package/dist/index.html +1 -1
- package/dist/index.js +23227 -0
- package/dist/index.js.map +1 -0
- package/dist/static/css/components.css +633 -0
- package/dist/static/css/components.css.map +1 -0
- package/dist/static/css/index.css +633 -0
- package/dist/static/css/index.css.map +1 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/utils.html +1 -1
- package/dist/utils.js +1691 -0
- package/dist/utils.js.map +1 -0
- package/package.json +163 -163
- package/dist/components.dbae0b04.js +0 -10
- package/dist/hooks.2d503d40.js +0 -1
- package/dist/index.f9d9a2d7.js +0 -10
- package/dist/static/css/components.1d98581c.css +0 -1
- package/dist/static/css/index.1d98581c.css +0 -1
- package/dist/utils.91dba1f9.js +0 -1
package/README.md
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
### Prerequisites
|
|
3
|
-
- Node.js 19+
|
|
4
|
-
- npm
|
|
5
|
-
|
|
6
|
-
### Installation
|
|
7
|
-
npm install
|
|
8
|
-
|
|
9
|
-
### Development Server
|
|
10
|
-
npm run dev
|
|
11
|
-
|
|
12
|
-
The app will be available at `http://localhost:5000`
|
|
13
|
-
|
|
14
|
-
### Build
|
|
15
|
-
npm run build
|
|
16
|
-
|
|
17
|
-
### Code Quality
|
|
18
|
-
# Run ESLint for code quality checks (shows errors only)
|
|
19
|
-
npm run lint
|
|
20
|
-
|
|
21
|
-
### Fix ESLint issues manually (optional)
|
|
22
|
-
npm run lint:fix
|
|
23
|
-
|
|
24
|
-
### Run TypeScript type checking
|
|
25
|
-
npm run type-check
|
|
26
|
-
|
|
27
|
-
### Check changes with local bundling
|
|
28
|
-
npm pack
|
|
29
|
-
|
|
30
|
-
### Publish the repo to npm
|
|
31
|
-
npm publish
|
|
32
|
-
|
|
1
|
+
|
|
2
|
+
### Prerequisites
|
|
3
|
+
- Node.js 19+
|
|
4
|
+
- npm
|
|
5
|
+
|
|
6
|
+
### Installation
|
|
7
|
+
npm install
|
|
8
|
+
|
|
9
|
+
### Development Server
|
|
10
|
+
npm run dev
|
|
11
|
+
|
|
12
|
+
The app will be available at `http://localhost:5000`
|
|
13
|
+
|
|
14
|
+
### Build
|
|
15
|
+
npm run build
|
|
16
|
+
|
|
17
|
+
### Code Quality
|
|
18
|
+
# Run ESLint for code quality checks (shows errors only)
|
|
19
|
+
npm run lint
|
|
20
|
+
|
|
21
|
+
### Fix ESLint issues manually (optional)
|
|
22
|
+
npm run lint:fix
|
|
23
|
+
|
|
24
|
+
### Run TypeScript type checking
|
|
25
|
+
npm run type-check
|
|
26
|
+
|
|
27
|
+
### Check changes with local bundling
|
|
28
|
+
npm pack
|
|
29
|
+
|
|
30
|
+
### Publish the repo to npm
|
|
31
|
+
npm publish
|
|
32
|
+
|
package/dist/components.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html><head><title>Rsbuild App</title><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><script defer src="/components.
|
|
1
|
+
<!doctype html><html><head><title>Rsbuild App</title><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><script defer src="/components.js"></script><link href="/static/css/components.css" rel="stylesheet"></head><body><div id="root"></div></body></html>
|