@adbayb/stack 0.0.0-next-84ccbde → 0.0.0-next-798693b

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.
Files changed (2) hide show
  1. package/dist/index.mjs +6 -102
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -326,106 +326,9 @@ const PRESERVE_FILES = [
326
326
  ".turbo"
327
327
  ];
328
328
 
329
- var name = "@adbayb/stack";
330
- var version = "0.0.0-next-84ccbde";
331
- var description = "My opinionated JavaScript-based toolchain";
332
- var publishConfig = {
333
- access: "public"
334
- };
335
- var files = [
336
- "bin",
337
- "config",
338
- "dist",
339
- "template"
340
- ];
341
- var bin = {
342
- stack: "./bin/index.mjs"
343
- };
344
- var type = "module";
345
- var exports = {
346
- ".": {
347
- source: "./src/index.ts",
348
- "default": "./dist/index.mjs"
349
- },
350
- "./eslint": "./config/eslint/index.mjs",
351
- "./prettier": "./config/prettier/index.mjs",
352
- "./typescript": "./config/typescript/base.json",
353
- "./typescript/react": "./config/typescript/react.json"
354
- };
355
- var scripts = {
356
- prepublishOnly: "pnpm build",
357
- prestart: "echo 'prestart'",
358
- start: "./bin/index.mjs",
359
- build: "quickbundle build",
360
- watch: "quickbundle watch"
361
- };
362
- var keywords = [
363
- "stack",
364
- "scripts",
365
- "toolchain",
366
- "development"
367
- ];
368
- var author = {
369
- name: "Ayoub Adib",
370
- email: "adbayb@gmail.com",
371
- url: "https://twitter.com/adbayb"
372
- };
373
- var repository = {
374
- type: "git",
375
- url: "https://github.com/adbayb/stack.git",
376
- directory: "applications/stack"
377
- };
378
- var license = "MIT";
379
- var devDependencies = {
380
- "@types/node": "20.16.12",
381
- "@types/eslint-config-prettier": "6.11.3",
382
- quickbundle: "2.5.0"
383
- };
384
- var dependencies = {
385
- "@changesets/changelog-github": "^0.5.0",
386
- "@changesets/cli": "^2.27.9",
387
- "@commitlint/cli": "^19.5.0",
388
- "@commitlint/config-conventional": "^19.5.0",
389
- "@eslint/compat": "^1.2.1",
390
- "@eslint/eslintrc": "^3.1.0",
391
- "@vitest/eslint-plugin": "^1.1.7",
392
- eslint: "^9.13.0",
393
- "eslint-plugin-react": "^7.37.2",
394
- globals: "^15.11.0",
395
- "typescript-eslint": "^8.11.0",
396
- "eslint-config-prettier": "^9.1.0",
397
- "eslint-import-resolver-typescript": "^3.6.3",
398
- "eslint-plugin-import": "^2.31.0",
399
- "eslint-plugin-jest-formatting": "^3.1.0",
400
- "eslint-plugin-jsdoc": "^50.4.3",
401
- "eslint-plugin-mdx": "^3.1.5",
402
- "eslint-plugin-prettier": "^5.2.1",
403
- "eslint-plugin-react-hooks": "^5.0.0",
404
- "eslint-plugin-sonarjs": "^2.0.4",
405
- "eslint-plugin-sort-keys-custom-order": "^2.2.0",
406
- fdir: "^6.4.2",
407
- prettier: "^3.3.3",
408
- termost: "^0.17.0",
409
- turbo: "^2.2.3",
410
- typescript: "^5.6.3"
411
- };
412
- var pkg = {
413
- name: name,
414
- version: version,
415
- description: description,
416
- publishConfig: publishConfig,
417
- files: files,
418
- bin: bin,
419
- type: type,
420
- exports: exports,
421
- scripts: scripts,
422
- keywords: keywords,
423
- author: author,
424
- repository: repository,
425
- license: license,
426
- devDependencies: devDependencies,
427
- dependencies: dependencies
428
- };
329
+ var version = "0.0.0-next-798693b";
330
+
331
+ const VERSION = version;
429
332
 
430
333
  const createCreateCommand = (program)=>{
431
334
  program.command({
@@ -434,7 +337,7 @@ const createCreateCommand = (program)=>{
434
337
  }).task({
435
338
  handler () {
436
339
  botMessage({
437
- title: `I'm Stack v${pkg.version}, your bot assistant`,
340
+ title: `I'm Stack v${VERSION}, your bot assistant`,
438
341
  description: "I can guarantee you a project creation in under 1 minute 🚀"
439
342
  }, {
440
343
  type: "information"
@@ -716,7 +619,8 @@ const createWatchCommand = (program)=>{
716
619
  const createProgram = (...commandFactories)=>{
717
620
  const program = termost({
718
621
  name: "stack",
719
- description: "Toolbox to easily scaffold and maintain a project"
622
+ description: "Toolbox to easily scaffold and maintain a project",
623
+ version: VERSION
720
624
  });
721
625
  for (const commandBuilder of commandFactories){
722
626
  commandBuilder(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "0.0.0-next-84ccbde",
3
+ "version": "0.0.0-next-798693b",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "publishConfig": {
6
6
  "access": "public"