@zthun/janitor-lint 19.1.1 → 19.1.3

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/cli.cjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"cli.cjs","sources":["../src/cli.ts"],"sourcesContent":["#!/usr/bin/env node\n\nimport usage from \"yargs\";\nimport type { IZJanitorLintArgs } from \"./app/janitor-lint-args.mjs\";\nimport { ZJanitorLint } from \"./app/janitor-lint.mjs\";\n\nconst args: IZJanitorLintArgs = usage(\"$0 [options]\")\n .alias(\"c\", \"config\")\n .describe(\"c\", \"Optional config file to use.\")\n .string(\"c\")\n .help()\n .parse() as any;\nconst janitor = new ZJanitorLint(console);\njanitor.run(args).then((result) => (process.exitCode = result));\n"],"names":["ZJanitorLint"],"mappings":";;;;AAMA,MAAM,OAA0B,MAAM,cAAc,EACjD,MAAM,KAAK,QAAQ,EACnB,SAAS,KAAK,8BAA8B,EAC5C,OAAO,GAAG,EACV,OACA,MAAM;AACT,MAAM,UAAU,IAAIA,YAAA,aAAa,OAAO;AACxC,QAAQ,IAAI,IAAI,EAAE,KAAK,CAAC,WAAY,QAAQ,WAAW,MAAO;"}
1
+ {"version":3,"file":"cli.cjs","sources":["../src/cli.mts"],"sourcesContent":["#!/usr/bin/env node\n\nimport usage from \"yargs\";\nimport type { IZJanitorLintArgs } from \"./app/janitor-lint-args.mjs\";\nimport { ZJanitorLint } from \"./app/janitor-lint.mjs\";\n\nconst args: IZJanitorLintArgs = usage(\"$0 [options]\")\n .alias(\"c\", \"config\")\n .describe(\"c\", \"Optional config file to use.\")\n .string(\"c\")\n .help()\n .parse() as any;\nconst janitor = new ZJanitorLint(console);\njanitor.run(args).then((result) => (process.exitCode = result));\n"],"names":["ZJanitorLint"],"mappings":";;;;AAMA,MAAM,OAA0B,MAAM,cAAc,EACjD,MAAM,KAAK,QAAQ,EACnB,SAAS,KAAK,8BAA8B,EAC5C,OAAO,GAAG,EACV,OACA,MAAM;AACT,MAAM,UAAU,IAAIA,YAAA,aAAa,OAAO;AACxC,QAAQ,IAAI,IAAI,EAAE,KAAK,CAAC,WAAY,QAAQ,WAAW,MAAO;"}
package/dist/cli.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"cli.js","sources":["../src/cli.ts"],"sourcesContent":["#!/usr/bin/env node\n\nimport usage from \"yargs\";\nimport type { IZJanitorLintArgs } from \"./app/janitor-lint-args.mjs\";\nimport { ZJanitorLint } from \"./app/janitor-lint.mjs\";\n\nconst args: IZJanitorLintArgs = usage(\"$0 [options]\")\n .alias(\"c\", \"config\")\n .describe(\"c\", \"Optional config file to use.\")\n .string(\"c\")\n .help()\n .parse() as any;\nconst janitor = new ZJanitorLint(console);\njanitor.run(args).then((result) => (process.exitCode = result));\n"],"names":[],"mappings":";;;AAMA,MAAM,OAA0B,MAAM,cAAc,EACjD,MAAM,KAAK,QAAQ,EACnB,SAAS,KAAK,8BAA8B,EAC5C,OAAO,GAAG,EACV,OACA,MAAM;AACT,MAAM,UAAU,IAAI,aAAa,OAAO;AACxC,QAAQ,IAAI,IAAI,EAAE,KAAK,CAAC,WAAY,QAAQ,WAAW,MAAO;"}
1
+ {"version":3,"file":"cli.js","sources":["../src/cli.mts"],"sourcesContent":["#!/usr/bin/env node\n\nimport usage from \"yargs\";\nimport type { IZJanitorLintArgs } from \"./app/janitor-lint-args.mjs\";\nimport { ZJanitorLint } from \"./app/janitor-lint.mjs\";\n\nconst args: IZJanitorLintArgs = usage(\"$0 [options]\")\n .alias(\"c\", \"config\")\n .describe(\"c\", \"Optional config file to use.\")\n .string(\"c\")\n .help()\n .parse() as any;\nconst janitor = new ZJanitorLint(console);\njanitor.run(args).then((result) => (process.exitCode = result));\n"],"names":[],"mappings":";;;AAMA,MAAM,OAA0B,MAAM,cAAc,EACjD,MAAM,KAAK,QAAQ,EACnB,SAAS,KAAK,8BAA8B,EAC5C,OAAO,GAAG,EACV,OACA,MAAM;AACT,MAAM,UAAU,IAAI,aAAa,OAAO;AACxC,QAAQ,IAAI,IAAI,EAAE,KAAK,CAAC,WAAY,QAAQ,WAAW,MAAO;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zthun/janitor-lint",
3
- "version": "19.1.1",
3
+ "version": "19.1.3",
4
4
  "description": "Style checks with tools for web projects using common rules.",
5
5
  "keywords": [
6
6
  "linters"
@@ -18,12 +18,12 @@
18
18
  "publishConfig": {
19
19
  "access": "public"
20
20
  },
21
- "types": "./dist/index.d.ts",
21
+ "types": "./dist/index.d.mts",
22
22
  "main": "./dist/index.cjs",
23
23
  "module": "./dist/index.js",
24
24
  "bin": "dist/cli.js",
25
25
  "exports": {
26
- "types": "./dist/index.d.ts",
26
+ "types": "./dist/index.d.mts",
27
27
  "import": "./dist/index.js",
28
28
  "require": "./dist/index.cjs"
29
29
  },
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "author": "Anthony Bonta",
35
35
  "dependencies": {
36
- "@zthun/janitor-options": "^19.1.1",
36
+ "@zthun/janitor-options": "^19.1.3",
37
37
  "chalk": "^5.4.1",
38
38
  "cosmiconfig": "^9.0.0",
39
39
  "cspell": "^9.0.2",
@@ -51,11 +51,11 @@
51
51
  "dist"
52
52
  ],
53
53
  "devDependencies": {
54
- "@zthun/janitor-build-config": "^19.1.1",
54
+ "@zthun/janitor-build-config": "^19.1.3",
55
55
  "typescript": "~5.8.3",
56
56
  "vite": "^6.3.5",
57
57
  "vitest": "^3.2.2",
58
58
  "vitest-mock-extended": "^3.1.0"
59
59
  },
60
- "gitHead": "ad805eb1111b858e833925d150acf12e48c09b1b"
60
+ "gitHead": "9909b6c17f4409b66c87278004e3f2d7228b7f54"
61
61
  }
File without changes
File without changes