linted 16.13.1-rc.3 → 16.13.1-rc.5

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 (1) hide show
  1. package/package.json +15 -14
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
- "_schemaVersion": "20.17.10-rc.4",
2
+ "_schemaVersion": "20.17.10",
3
3
  "name": "linted",
4
- "version": "16.13.1-rc.3",
4
+ "version": "16.13.1-rc.5",
5
5
  "description": "ESLint mono-plugin bundler with strict, opinionated defaults for (Stylistic) JavaScript, TypeScript, Svelte, HTML, Tailwind/CSS, JSON, JSONC, YAML, and Mocha.",
6
6
  "keywords": [
7
7
  "eslint",
@@ -94,20 +94,21 @@
94
94
  "compile:svelte:sync": "svelte-kit sync",
95
95
  "compile:svelte:check": "svelte-check --tsconfig ./tsconfig.json",
96
96
  "compile:svelte:compile": "vite build",
97
- "fix:false": "echo \"Skipped fixing (fix=false)\"",
98
- "fix:true": "run-s \"fix:output:{1}\" --",
99
- "fix:output:ts": "ts-add-js-extension --dir=dist",
100
- "fix:output:svelte": "echo \"Skipped fix for Svelte (handled by SvelteKit)\"",
97
+ "fix:true": "run-s \"fix:dist:{1}\" --",
98
+ "fix:false": "echo \"Fix skipped (fix=false)\"",
99
+ "fix:dist:ts": "ts-add-js-extension --dir=dist",
100
+ "fix:dist:svelte": "echo \"Fix skipped for Svelte (handled by SvelteKit)\"",
101
+ "li": "eslint --cache --fix",
101
102
  "lint": "npm run build",
102
- "lint:false": "(npm run lint:true) || (exit 0)",
103
103
  "lint:true": "run-os",
104
- "lint:true:default": "run-s lint:all:* \"lint:scope:$npm_package_config_language\"",
105
- "lint:true:windows": "run-s lint:all:* \"lint:scope:%npm_package_config_language%\"",
106
- "lint:all:configs": "npm run ln -- {*,.github/workflows/*}.{json,jsonc,yml,yaml,js,cjs,mjs,ts,cts,mts}",
107
- "lint:all:code": "npm run ln -- {src,tests,static,typings}/**/*.{html,js,cjs,mjs,ts,cts,mts}",
108
- "lint:scope:ts": "echo \"Done linting TypeScript\"",
109
- "lint:scope:svelte": "npm run ln -- {src,tests,static}/**/*.svelte",
110
- "ln": "eslint --cache --fix",
104
+ "lint:true:default": "run-s lint:scope:global:* \"lint:scope:$npm_package_config_language\"",
105
+ "lint:true:windows": "run-s lint:scope:global:* \"lint:scope:%npm_package_config_language%\"",
106
+ "lint:false": "(npm run lint:true) || (echo \"Skipped linting (lint=false)\")",
107
+ "lint:scope:global:configs": "npm run li -- {*,.github/**/*}.{json,jsonc,yml,yaml,js,cjs,mjs,ts,cts,mts}",
108
+ "lint:scope:global:code": "npm run li -- {src,tests,static,typings}/**/*.{html,js,cjs,mjs,ts,cts,mts}",
109
+ "lint:scope:ts": "exit 0",
110
+ "lint:scope:svelte": "npm run li -- {src,tests,static}/**/*.svelte",
111
+ "postbuild": "echo \"Build (+lint) complete.\"",
111
112
  "pretest": "npm run build",
112
113
  "test": "",
113
114
  "start": "run-os",