@zhongguo168a/yxeditor-common 0.0.1
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 +29 -0
- package/dist/index.d.ts +4355 -0
- package/dist/index.esm.js +14172 -0
- package/dist/index.esm.js.map +1 -0
- package/package.json +53 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Base Project
|
|
2
|
+
|
|
3
|
+
A TypeScript project template with Rollup and Vitest.
|
|
4
|
+
|
|
5
|
+
## Getting Started
|
|
6
|
+
|
|
7
|
+
1. Install dependencies:
|
|
8
|
+
\`\`\`bash
|
|
9
|
+
npm install
|
|
10
|
+
\`\`\`
|
|
11
|
+
|
|
12
|
+
2. Build the project:
|
|
13
|
+
\`\`\`bash
|
|
14
|
+
npm run build
|
|
15
|
+
\`\`\`
|
|
16
|
+
|
|
17
|
+
3. Run tests:
|
|
18
|
+
\`\`\`bash
|
|
19
|
+
npm test
|
|
20
|
+
\`\`\`
|
|
21
|
+
|
|
22
|
+
## Scripts
|
|
23
|
+
|
|
24
|
+
- `npm run build` - Build the project with Rollup
|
|
25
|
+
- `npm run dev` - Build in watch mode
|
|
26
|
+
- `npm test` - Run tests with Vitest
|
|
27
|
+
- `npm run test:ui` - Run tests with UI
|
|
28
|
+
- `npm run test:run` - Run tests once
|
|
29
|
+
- `npm run coverage` - Run tests with coverage report
|