@batijs/cli 0.0.233 → 0.0.234-beta.2
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.
|
@@ -4,7 +4,7 @@ async function getReadme(props) {
|
|
|
4
4
|
const content = await loadReadme(props);
|
|
5
5
|
const flags = Array.from(props.meta.BATI).filter((f) => f !== "force").map((f) => `--${f}`).join(" ");
|
|
6
6
|
const v = getVersion();
|
|
7
|
-
const intro = `Generated with [Bati](https://batijs.dev) ${
|
|
7
|
+
const intro = `Generated with [Bati](https://batijs.dev) ${`(${markdown.link("https://www.npmjs.com/package/create-bati/v/" + v.version, "version " + v.semver.at(-1))})`} using this command:
|
|
8
8
|
|
|
9
9
|
\`\`\`sh
|
|
10
10
|
${getArgs()} ${flags}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
# Logs
|
|
2
|
+
logs
|
|
3
|
+
*.log
|
|
4
|
+
npm-debug.log*
|
|
5
|
+
yarn-debug.log*
|
|
6
|
+
yarn-error.log*
|
|
7
|
+
lerna-debug.log*
|
|
8
|
+
.pnpm-debug.log*
|
|
9
|
+
|
|
10
|
+
# Diagnostic reports (https://nodejs.org/api/report.html)
|
|
11
|
+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
12
|
+
|
|
13
|
+
# Runtime data
|
|
14
|
+
pids
|
|
15
|
+
*.pid
|
|
16
|
+
*.seed
|
|
17
|
+
*.pid.lock
|
|
18
|
+
|
|
19
|
+
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
20
|
+
lib-cov
|
|
21
|
+
|
|
22
|
+
# Coverage directory used by tools like istanbul
|
|
23
|
+
coverage
|
|
24
|
+
*.lcov
|
|
25
|
+
|
|
26
|
+
# nyc test coverage
|
|
27
|
+
.nyc_output
|
|
28
|
+
|
|
29
|
+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
30
|
+
.grunt
|
|
31
|
+
|
|
32
|
+
# Bower dependency directory (https://bower.io/)
|
|
33
|
+
bower_components
|
|
34
|
+
|
|
35
|
+
# node-waf configuration
|
|
36
|
+
.lock-wscript
|
|
37
|
+
|
|
38
|
+
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
39
|
+
build/Release
|
|
40
|
+
|
|
41
|
+
# Dependency directories
|
|
42
|
+
node_modules/
|
|
43
|
+
jspm_packages/
|
|
44
|
+
|
|
45
|
+
# Snowpack dependency directory (https://snowpack.dev/)
|
|
46
|
+
web_modules/
|
|
47
|
+
|
|
48
|
+
# TypeScript cache
|
|
49
|
+
*.tsbuildinfo
|
|
50
|
+
|
|
51
|
+
# Optional npm cache directory
|
|
52
|
+
.npm
|
|
53
|
+
|
|
54
|
+
# Optional eslint cache
|
|
55
|
+
.eslintcache
|
|
56
|
+
|
|
57
|
+
# Optional stylelint cache
|
|
58
|
+
.stylelintcache
|
|
59
|
+
|
|
60
|
+
# Microbundle cache
|
|
61
|
+
.rpt2_cache/
|
|
62
|
+
.rts2_cache_cjs/
|
|
63
|
+
.rts2_cache_es/
|
|
64
|
+
.rts2_cache_umd/
|
|
65
|
+
|
|
66
|
+
# Optional REPL history
|
|
67
|
+
.node_repl_history
|
|
68
|
+
|
|
69
|
+
# Output of 'npm pack'
|
|
70
|
+
*.tgz
|
|
71
|
+
|
|
72
|
+
# Yarn Integrity file
|
|
73
|
+
.yarn-integrity
|
|
74
|
+
|
|
75
|
+
# dotenv environment variable files
|
|
76
|
+
.env
|
|
77
|
+
.env.development.local
|
|
78
|
+
.env.test.local
|
|
79
|
+
.env.production.local
|
|
80
|
+
.env.local
|
|
81
|
+
|
|
82
|
+
# parcel-bundler cache (https://parceljs.org/)
|
|
83
|
+
.cache
|
|
84
|
+
.parcel-cache
|
|
85
|
+
|
|
86
|
+
# firebase-admin service-account
|
|
87
|
+
firebase
|
|
88
|
+
|
|
89
|
+
# Next.js build output
|
|
90
|
+
.next
|
|
91
|
+
out
|
|
92
|
+
|
|
93
|
+
# Nuxt.js build / generate output
|
|
94
|
+
.nuxt
|
|
95
|
+
dist
|
|
96
|
+
|
|
97
|
+
# Gatsby files
|
|
98
|
+
.cache/
|
|
99
|
+
# Comment in the public line in if your project uses Gatsby and not Next.js
|
|
100
|
+
# https://nextjs.org/blog/next-9-1#public-directory-support
|
|
101
|
+
# public
|
|
102
|
+
|
|
103
|
+
# vuepress build output
|
|
104
|
+
.vuepress/dist
|
|
105
|
+
|
|
106
|
+
# vuepress v2.x temp and cache directory
|
|
107
|
+
.temp
|
|
108
|
+
|
|
109
|
+
# Docusaurus cache and generated files
|
|
110
|
+
.docusaurus
|
|
111
|
+
|
|
112
|
+
# Serverless directories
|
|
113
|
+
.serverless/
|
|
114
|
+
|
|
115
|
+
# FuseBox cache
|
|
116
|
+
.fusebox/
|
|
117
|
+
|
|
118
|
+
# DynamoDB Local files
|
|
119
|
+
.dynamodb/
|
|
120
|
+
|
|
121
|
+
# TernJS port file
|
|
122
|
+
.tern-port
|
|
123
|
+
|
|
124
|
+
# Stores VSCode versions used for testing VSCode extensions
|
|
125
|
+
.vscode-test
|
|
126
|
+
|
|
127
|
+
# yarn v2
|
|
128
|
+
.yarn/cache
|
|
129
|
+
.yarn/unplugged
|
|
130
|
+
.yarn/build-state.yml
|
|
131
|
+
.yarn/install-state.gz
|
|
132
|
+
.pnp.*
|
|
133
|
+
|
|
134
|
+
# Cloudflare
|
|
135
|
+
.wrangler/
|
|
@@ -43,10 +43,10 @@ var require_package = __commonJS({
|
|
|
43
43
|
devDependencies: {
|
|
44
44
|
"@batijs/compile": "workspace:*",
|
|
45
45
|
"@types/node": "^18.19.14",
|
|
46
|
-
"@vite-plugin-vercel/vike": "^
|
|
46
|
+
"@vite-plugin-vercel/vike": "^8.0.0",
|
|
47
47
|
vike: "^0.4.181",
|
|
48
48
|
vite: "^5.3.4",
|
|
49
|
-
"vite-plugin-vercel": "^
|
|
49
|
+
"vite-plugin-vercel": "^8.0.0"
|
|
50
50
|
},
|
|
51
51
|
dependencies: {
|
|
52
52
|
"@batijs/core": "workspace:*"
|
package/dist/index.js
CHANGED
|
@@ -1588,7 +1588,7 @@ var createDefaultQueryTester = function(query, options) {
|
|
|
1588
1588
|
// package.json
|
|
1589
1589
|
var package_default = {
|
|
1590
1590
|
name: "@batijs/cli",
|
|
1591
|
-
version: "0.0.
|
|
1591
|
+
version: "0.0.234-beta.2",
|
|
1592
1592
|
type: "module",
|
|
1593
1593
|
scripts: {
|
|
1594
1594
|
"check-types": "tsc --noEmit",
|
|
@@ -1612,7 +1612,7 @@ var package_default = {
|
|
|
1612
1612
|
execa: "^9.3.0",
|
|
1613
1613
|
rimraf: "^6.0.1",
|
|
1614
1614
|
sift: "^17.1.3",
|
|
1615
|
-
tsup: "^8.2.
|
|
1615
|
+
tsup: "^8.2.2",
|
|
1616
1616
|
typescript: "^5.5.3",
|
|
1617
1617
|
"unplugin-purge-polyfills": "^0.0.4",
|
|
1618
1618
|
vite: "^5.3.4"
|
|
@@ -1626,7 +1626,8 @@ var package_default = {
|
|
|
1626
1626
|
".": "./dist/index.js"
|
|
1627
1627
|
},
|
|
1628
1628
|
files: [
|
|
1629
|
-
"dist/"
|
|
1629
|
+
"dist/",
|
|
1630
|
+
"dist/boilerplates/@batijs/shared/files/.gitignore"
|
|
1630
1631
|
]
|
|
1631
1632
|
};
|
|
1632
1633
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@batijs/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.234-beta.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want",
|
|
@@ -16,23 +16,24 @@
|
|
|
16
16
|
"execa": "^9.3.0",
|
|
17
17
|
"rimraf": "^6.0.1",
|
|
18
18
|
"sift": "^17.1.3",
|
|
19
|
-
"tsup": "^8.2.
|
|
19
|
+
"tsup": "^8.2.2",
|
|
20
20
|
"typescript": "^5.5.3",
|
|
21
21
|
"unplugin-purge-polyfills": "^0.0.4",
|
|
22
22
|
"vite": "^5.3.4",
|
|
23
|
-
"@batijs/compile": "0.0.
|
|
24
|
-
"@batijs/build": "0.0.
|
|
23
|
+
"@batijs/compile": "0.0.234-beta.2",
|
|
24
|
+
"@batijs/build": "0.0.234-beta.2"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@batijs/
|
|
28
|
-
"@batijs/
|
|
27
|
+
"@batijs/features": "0.0.234-beta.2",
|
|
28
|
+
"@batijs/core": "0.0.234-beta.2"
|
|
29
29
|
},
|
|
30
30
|
"bin": "./dist/index.js",
|
|
31
31
|
"exports": {
|
|
32
32
|
".": "./dist/index.js"
|
|
33
33
|
},
|
|
34
34
|
"files": [
|
|
35
|
-
"dist/"
|
|
35
|
+
"dist/",
|
|
36
|
+
"dist/boilerplates/@batijs/shared/files/.gitignore"
|
|
36
37
|
],
|
|
37
38
|
"scripts": {
|
|
38
39
|
"check-types": "tsc --noEmit",
|