@weapp-core/init 2.1.4 → 3.0.0-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/dist/index.cjs +491 -303
- package/dist/index.d.cts +71 -41
- package/dist/index.d.ts +71 -41
- package/dist/index.js +488 -301
- package/package.json +4 -3
- package/templates/default/gitignore +34 -0
- package/templates/default/package.json +2 -2
- package/templates/tailwindcss/gitignore +34 -0
- package/templates/tailwindcss/package.json +3 -3
- package/templates/tdesign/gitignore +34 -0
- package/templates/tdesign/package.json +3 -3
- package/templates/vant/gitignore +34 -0
- package/templates/vant/package.json +3 -3
- package/templates/default/CHANGELOG.md +0 -9
- package/templates/tailwindcss/CHANGELOG.md +0 -9
- package/templates/tdesign/CHANGELOG.md +0 -9
- package/templates/vant/CHANGELOG.md +0 -9
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@weapp-core/init",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.0-alpha.0",
|
|
5
5
|
"description": "@weapp-core/init",
|
|
6
6
|
"author": "ice breaker <1324318532@qq.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -39,11 +39,12 @@
|
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"fs-extra": "^11.3.2",
|
|
42
|
-
"@weapp-core/
|
|
43
|
-
"@weapp-core/
|
|
42
|
+
"@weapp-core/logger": "^2.0.0",
|
|
43
|
+
"@weapp-core/shared": "^2.0.1"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/semver": "^7.7.1",
|
|
47
|
+
"fdir": "^6.5.0",
|
|
47
48
|
"semver": "^7.7.2"
|
|
48
49
|
},
|
|
49
50
|
"scripts": {
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# dependencies
|
|
2
|
+
node_modules
|
|
3
|
+
.pnp
|
|
4
|
+
.pnp.js
|
|
5
|
+
|
|
6
|
+
# testing
|
|
7
|
+
coverage
|
|
8
|
+
|
|
9
|
+
# next.js
|
|
10
|
+
.next/
|
|
11
|
+
out/
|
|
12
|
+
build
|
|
13
|
+
|
|
14
|
+
# misc
|
|
15
|
+
.DS_Store
|
|
16
|
+
*.pem
|
|
17
|
+
|
|
18
|
+
# debug
|
|
19
|
+
npm-debug.log*
|
|
20
|
+
yarn-debug.log*
|
|
21
|
+
yarn-error.log*
|
|
22
|
+
.pnpm-debug.log*
|
|
23
|
+
|
|
24
|
+
# local env files
|
|
25
|
+
.env.local
|
|
26
|
+
.env.development.local
|
|
27
|
+
.env.test.local
|
|
28
|
+
.env.production.local
|
|
29
|
+
|
|
30
|
+
# turbo
|
|
31
|
+
.turbo
|
|
32
|
+
|
|
33
|
+
dist
|
|
34
|
+
vite.config.ts.timestamp-*.mjs
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# dependencies
|
|
2
|
+
node_modules
|
|
3
|
+
.pnp
|
|
4
|
+
.pnp.js
|
|
5
|
+
|
|
6
|
+
# testing
|
|
7
|
+
coverage
|
|
8
|
+
|
|
9
|
+
# next.js
|
|
10
|
+
.next/
|
|
11
|
+
out/
|
|
12
|
+
build
|
|
13
|
+
|
|
14
|
+
# misc
|
|
15
|
+
.DS_Store
|
|
16
|
+
*.pem
|
|
17
|
+
|
|
18
|
+
# debug
|
|
19
|
+
npm-debug.log*
|
|
20
|
+
yarn-debug.log*
|
|
21
|
+
yarn-error.log*
|
|
22
|
+
.pnpm-debug.log*
|
|
23
|
+
|
|
24
|
+
# local env files
|
|
25
|
+
.env.local
|
|
26
|
+
.env.development.local
|
|
27
|
+
.env.test.local
|
|
28
|
+
.env.production.local
|
|
29
|
+
|
|
30
|
+
# turbo
|
|
31
|
+
.turbo
|
|
32
|
+
|
|
33
|
+
dist
|
|
34
|
+
vite.config.ts.timestamp-*.mjs
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"autoprefixer": "^10.4.21",
|
|
30
30
|
"miniprogram-api-typings": "^4.1.0",
|
|
31
31
|
"postcss": "^8.5.6",
|
|
32
|
-
"sass": "^1.
|
|
32
|
+
"sass": "^1.93.2",
|
|
33
33
|
"tailwindcss": "^3.4.17",
|
|
34
|
-
"typescript": "^5.9.
|
|
35
|
-
"weapp-tailwindcss": "^4.3.
|
|
34
|
+
"typescript": "^5.9.3",
|
|
35
|
+
"weapp-tailwindcss": "^4.3.3",
|
|
36
36
|
"weapp-vite": "workspace:*"
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# dependencies
|
|
2
|
+
node_modules
|
|
3
|
+
.pnp
|
|
4
|
+
.pnp.js
|
|
5
|
+
|
|
6
|
+
# testing
|
|
7
|
+
coverage
|
|
8
|
+
|
|
9
|
+
# next.js
|
|
10
|
+
.next/
|
|
11
|
+
out/
|
|
12
|
+
build
|
|
13
|
+
|
|
14
|
+
# misc
|
|
15
|
+
.DS_Store
|
|
16
|
+
*.pem
|
|
17
|
+
|
|
18
|
+
# debug
|
|
19
|
+
npm-debug.log*
|
|
20
|
+
yarn-debug.log*
|
|
21
|
+
yarn-error.log*
|
|
22
|
+
.pnpm-debug.log*
|
|
23
|
+
|
|
24
|
+
# local env files
|
|
25
|
+
.env.local
|
|
26
|
+
.env.development.local
|
|
27
|
+
.env.test.local
|
|
28
|
+
.env.production.local
|
|
29
|
+
|
|
30
|
+
# turbo
|
|
31
|
+
.turbo
|
|
32
|
+
|
|
33
|
+
dist
|
|
34
|
+
vite.config.ts.timestamp-*.mjs
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"autoprefixer": "^10.4.21",
|
|
33
33
|
"miniprogram-api-typings": "^4.1.0",
|
|
34
34
|
"postcss": "^8.5.6",
|
|
35
|
-
"sass": "^1.
|
|
35
|
+
"sass": "^1.93.2",
|
|
36
36
|
"tailwindcss": "^3.4.17",
|
|
37
|
-
"typescript": "^5.9.
|
|
38
|
-
"weapp-tailwindcss": "^4.3.
|
|
37
|
+
"typescript": "^5.9.3",
|
|
38
|
+
"weapp-tailwindcss": "^4.3.3",
|
|
39
39
|
"weapp-vite": "workspace:*"
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# dependencies
|
|
2
|
+
node_modules
|
|
3
|
+
.pnp
|
|
4
|
+
.pnp.js
|
|
5
|
+
|
|
6
|
+
# testing
|
|
7
|
+
coverage
|
|
8
|
+
|
|
9
|
+
# next.js
|
|
10
|
+
.next/
|
|
11
|
+
out/
|
|
12
|
+
build
|
|
13
|
+
|
|
14
|
+
# misc
|
|
15
|
+
.DS_Store
|
|
16
|
+
*.pem
|
|
17
|
+
|
|
18
|
+
# debug
|
|
19
|
+
npm-debug.log*
|
|
20
|
+
yarn-debug.log*
|
|
21
|
+
yarn-error.log*
|
|
22
|
+
.pnpm-debug.log*
|
|
23
|
+
|
|
24
|
+
# local env files
|
|
25
|
+
.env.local
|
|
26
|
+
.env.development.local
|
|
27
|
+
.env.test.local
|
|
28
|
+
.env.production.local
|
|
29
|
+
|
|
30
|
+
# turbo
|
|
31
|
+
.turbo
|
|
32
|
+
|
|
33
|
+
dist
|
|
34
|
+
vite.config.ts.timestamp-*.mjs
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"autoprefixer": "^10.4.21",
|
|
33
33
|
"miniprogram-api-typings": "^4.1.0",
|
|
34
34
|
"postcss": "^8.5.6",
|
|
35
|
-
"sass": "^1.
|
|
35
|
+
"sass": "^1.93.2",
|
|
36
36
|
"tailwindcss": "^3.4.17",
|
|
37
|
-
"typescript": "^5.9.
|
|
38
|
-
"weapp-tailwindcss": "^4.3.
|
|
37
|
+
"typescript": "^5.9.3",
|
|
38
|
+
"weapp-tailwindcss": "^4.3.3",
|
|
39
39
|
"weapp-vite": "workspace:*"
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# weapp-vite-tailwindcss-template
|
|
2
|
-
|
|
3
|
-
## 1.0.2
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- [`0ae2a53`](https://github.com/weapp-vite/weapp-vite/commit/0ae2a53198b8d3ab3e8a9ac18ee125e2017a8f51) Thanks [@sonofmagic](https://github.com/sonofmagic)! - chore: change website url
|
|
8
|
-
|
|
9
|
-
## 1.0.1
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# weapp-vite-tailwindcss-tdesign-template
|
|
2
|
-
|
|
3
|
-
## 1.0.2
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- [`0ae2a53`](https://github.com/weapp-vite/weapp-vite/commit/0ae2a53198b8d3ab3e8a9ac18ee125e2017a8f51) Thanks [@sonofmagic](https://github.com/sonofmagic)! - chore: change website url
|
|
8
|
-
|
|
9
|
-
## 1.0.1
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# weapp-vite-tailwindcss-vant-template
|
|
2
|
-
|
|
3
|
-
## 1.0.2
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- [`0ae2a53`](https://github.com/weapp-vite/weapp-vite/commit/0ae2a53198b8d3ab3e8a9ac18ee125e2017a8f51) Thanks [@sonofmagic](https://github.com/sonofmagic)! - chore: change website url
|
|
8
|
-
|
|
9
|
-
## 1.0.1
|