klei-cli 1.0.7 → 1.0.8
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/bin/cli.js +101 -0
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -179,6 +179,107 @@ export default tseslint.config(
|
|
|
179
179
|
)`,
|
|
180
180
|
pathFileName: "eslint.config.mjs"
|
|
181
181
|
},
|
|
182
|
+
{
|
|
183
|
+
content: `# Dependencias
|
|
184
|
+
node_modules/
|
|
185
|
+
npm-debug.log*
|
|
186
|
+
yarn-debug.log*
|
|
187
|
+
yarn-error.log*
|
|
188
|
+
pnpm-debug.log*
|
|
189
|
+
|
|
190
|
+
# Archivos de construcci\xF3n
|
|
191
|
+
dist/
|
|
192
|
+
build/
|
|
193
|
+
*.tsbuildinfo
|
|
194
|
+
|
|
195
|
+
# Archivos de entorno
|
|
196
|
+
.env
|
|
197
|
+
.env.local
|
|
198
|
+
.env.development.local
|
|
199
|
+
.env.test.local
|
|
200
|
+
.env.production.local
|
|
201
|
+
|
|
202
|
+
# Archivos del sistema operativo
|
|
203
|
+
.DS_Store
|
|
204
|
+
.DS_Store?
|
|
205
|
+
._*
|
|
206
|
+
.Spotlight-V100
|
|
207
|
+
.Trashes
|
|
208
|
+
ehthumbs.db
|
|
209
|
+
Thumbs.db
|
|
210
|
+
|
|
211
|
+
# Archivos del editor
|
|
212
|
+
.vscode/
|
|
213
|
+
.idea/
|
|
214
|
+
*.swp
|
|
215
|
+
*.swo
|
|
216
|
+
*~
|
|
217
|
+
|
|
218
|
+
# Logs
|
|
219
|
+
logs
|
|
220
|
+
*.log
|
|
221
|
+
|
|
222
|
+
# Archivos temporales
|
|
223
|
+
*.tmp
|
|
224
|
+
*.temp
|
|
225
|
+
|
|
226
|
+
# Coverage directory used by tools like istanbul
|
|
227
|
+
coverage/
|
|
228
|
+
*.lcov
|
|
229
|
+
|
|
230
|
+
# NYC test coverage
|
|
231
|
+
.nyc_output
|
|
232
|
+
|
|
233
|
+
# Dependency directories
|
|
234
|
+
jspm_packages/
|
|
235
|
+
|
|
236
|
+
# Optional npm cache directory
|
|
237
|
+
.npm
|
|
238
|
+
|
|
239
|
+
# Optional eslint cache
|
|
240
|
+
.eslintcache
|
|
241
|
+
|
|
242
|
+
# Microbundle cache
|
|
243
|
+
.rpt2_cache/
|
|
244
|
+
.rts2_cache_cjs/
|
|
245
|
+
.rts2_cache_es/
|
|
246
|
+
.rts2_cache_umd/
|
|
247
|
+
|
|
248
|
+
# Optional REPL history
|
|
249
|
+
.node_repl_history
|
|
250
|
+
|
|
251
|
+
# Output of 'npm pack'
|
|
252
|
+
*.tgz
|
|
253
|
+
|
|
254
|
+
# Yarn Integrity file
|
|
255
|
+
.yarn-integrity
|
|
256
|
+
|
|
257
|
+
# parcel-bundler cache (https://parceljs.org/)
|
|
258
|
+
.cache
|
|
259
|
+
.parcel-cache
|
|
260
|
+
|
|
261
|
+
# next.js build output
|
|
262
|
+
.next
|
|
263
|
+
|
|
264
|
+
# nuxt.js build output
|
|
265
|
+
.nuxt
|
|
266
|
+
|
|
267
|
+
# vuepress build output
|
|
268
|
+
.vuepress/dist
|
|
269
|
+
|
|
270
|
+
# Serverless directories
|
|
271
|
+
.serverless
|
|
272
|
+
|
|
273
|
+
# FuseBox cache
|
|
274
|
+
.fusebox/
|
|
275
|
+
|
|
276
|
+
# DynamoDB Local files
|
|
277
|
+
.dynamodb/
|
|
278
|
+
|
|
279
|
+
# TernJS port file
|
|
280
|
+
.tern-port`,
|
|
281
|
+
pathFileName: ".gitignore"
|
|
282
|
+
},
|
|
182
283
|
{
|
|
183
284
|
content: `// \u2501\u2501 IMPORT MODULES \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501
|
|
184
285
|
// \xBB IMPORT NATIVE NODE MODULES
|