@lark-apaas/coding-template-vite-react 0.1.7 → 0.1.9-alpha.0
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/package.json +11 -3
- package/template/_gitignore +56 -16
- package/template/_npmrc +1 -0
- package/template/package-lock.json +1037 -1038
- package/template/package.json +3 -3
- package/template/src/app.tsx +1 -1
- package/template/src/components/Layout.tsx +7 -0
- package/template/src/index.css +2 -148
- package/template/src/pages/ExamplePage/ExamplePage.tsx +37 -0
- package/template/src/tailwind-theme.css +198 -16
- package/template/src/components/layout.tsx +0 -9
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lark-apaas/coding-template-vite-react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9-alpha.0",
|
|
4
4
|
"description": "Vite + React client template for miaoda coding",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"files": [
|
|
6
|
+
"files": [
|
|
7
|
+
"template",
|
|
8
|
+
"hooks"
|
|
9
|
+
],
|
|
7
10
|
"scripts": {
|
|
8
11
|
"validate-manifest": "node ../../../scripts/validate-template.mjs .",
|
|
9
12
|
"smoke": "node ../../../scripts/smoke-template.mjs .",
|
|
@@ -13,7 +16,12 @@
|
|
|
13
16
|
"access": "public",
|
|
14
17
|
"registry": "https://registry.npmjs.org/"
|
|
15
18
|
},
|
|
16
|
-
"keywords": [
|
|
19
|
+
"keywords": [
|
|
20
|
+
"miaoda",
|
|
21
|
+
"coding-template",
|
|
22
|
+
"vite",
|
|
23
|
+
"react"
|
|
24
|
+
],
|
|
17
25
|
"license": "MIT",
|
|
18
26
|
"miaodaTemplate": {
|
|
19
27
|
"schemaVersion": 1,
|
package/template/_gitignore
CHANGED
|
@@ -1,24 +1,64 @@
|
|
|
1
|
+
# Dependencies
|
|
2
|
+
node_modules/
|
|
3
|
+
*/node_modules/
|
|
4
|
+
|
|
5
|
+
# Production builds
|
|
6
|
+
dist/
|
|
7
|
+
*/dist/
|
|
8
|
+
build/
|
|
9
|
+
*/build/
|
|
10
|
+
|
|
11
|
+
# Environment files
|
|
12
|
+
.env.local
|
|
13
|
+
|
|
1
14
|
# Logs
|
|
2
|
-
logs
|
|
3
|
-
*.log
|
|
4
15
|
npm-debug.log*
|
|
5
16
|
yarn-debug.log*
|
|
6
17
|
yarn-error.log*
|
|
7
|
-
pnpm-debug.log*
|
|
8
18
|
lerna-debug.log*
|
|
19
|
+
/logs/
|
|
20
|
+
|
|
21
|
+
# Runtime data
|
|
22
|
+
pids
|
|
23
|
+
*.pid
|
|
24
|
+
*.seed
|
|
25
|
+
*.pid.lock
|
|
26
|
+
|
|
27
|
+
# Coverage directory used by tools like istanbul
|
|
28
|
+
coverage/
|
|
29
|
+
*.lcov
|
|
9
30
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
*.
|
|
31
|
+
# IDE files
|
|
32
|
+
.vscode/
|
|
33
|
+
.idea/
|
|
34
|
+
*.swp
|
|
35
|
+
*.swo
|
|
36
|
+
*~
|
|
14
37
|
|
|
15
|
-
#
|
|
16
|
-
.vscode/*
|
|
17
|
-
!.vscode/extensions.json
|
|
18
|
-
.idea
|
|
38
|
+
# OS generated files
|
|
19
39
|
.DS_Store
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
40
|
+
.DS_Store?
|
|
41
|
+
._*
|
|
42
|
+
.Spotlight-V100
|
|
43
|
+
.Trashes
|
|
44
|
+
ehthumbs.db
|
|
45
|
+
Thumbs.db
|
|
46
|
+
|
|
47
|
+
# Temporary folders
|
|
48
|
+
tmp/
|
|
49
|
+
temp/
|
|
50
|
+
.playwright-cli/
|
|
51
|
+
|
|
52
|
+
# Lock files (keep package-lock.json for consistent installs)
|
|
53
|
+
yarn.lock
|
|
54
|
+
pnpm-lock.yaml
|
|
55
|
+
|
|
56
|
+
# Cache files
|
|
57
|
+
.eslintcache
|
|
58
|
+
*.tsbuildinfo
|
|
59
|
+
|
|
60
|
+
# swc wasm
|
|
61
|
+
.swc
|
|
62
|
+
|
|
63
|
+
# Agent files
|
|
64
|
+
.agent/
|
package/template/_npmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
registry=https://registry.npmmirror.com/
|