@eslinted/core 32.4.0 → 32.4.1

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 +10 -14
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
- "$pkg": "2412.0.0",
2
+ "$pkg": "2413.0.0",
3
3
  "$schema": "https://json.schemastore.org/package",
4
4
  "$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
5
5
  "name": "@eslinted/core",
6
- "version": "32.4.0",
6
+ "version": "32.4.1",
7
7
  "repository": "github:jimmy-zhening-luo/linted-core",
8
8
  "description": "Internal core for npm package `linted`, responsible for producing an array of fully-formed ESLint configurations according to `linted` spec.",
9
9
  "keywords": [],
@@ -28,23 +28,19 @@
28
28
  "typescript": "^5.9.3"
29
29
  },
30
30
  "scripts": {
31
- "clean": "cmd --% /c \"for %G in (types dist build packed .svelte-kit) do (if exist %G rmdir /s /q %G) & for %G in (.eslintcache) do (if exist %G del /f /q %G)\" || rm -rf types dist build packed .svelte-kit .eslintcache",
32
- "build": "npm run build:ts",
33
- "build:ts": "tsc -b src",
31
+ "clean": "cmd /q /c \"for %G in (types dist build packed .svelte-kit) do (if exist %G rmdir /s /q %G) & for %G in (.eslintcache) do (if exist %G del /f /q %G)\" || rm -rf types dist build packed .svelte-kit .eslintcache",
32
+ "build": "tsc -b src && ts-add-js-extension --showprogress=false --dir=dist",
34
33
  "build:svelte": "svelte-kit sync && svelte-check && vite build",
35
- "postbuild:ts": "npm run --if-present stage && ts-add-js-extension --showprogress=false --dir=dist",
36
- "postbuild": "npm run lint || exit 0",
37
- "lint": "eslint --cache --fix",
38
- "pretest": "npm run build",
39
- "test": "npm run --if-present test:suite",
40
34
  "prestart": "npm run build",
41
- "start": "npm run start:ts",
42
- "start:ts": "node .",
35
+ "start": "node .",
43
36
  "start:svelte": "vite preview --open",
37
+ "lint": "eslint --cache --fix",
38
+ "pretest": "npm run build",
39
+ "test": "",
40
+ "posttest": "npm run lint || exit 0",
44
41
  "prepublishOnly": "npm run clean && npm test",
45
- "publish:release": "cmd --% /c \"for /f \"delims=-\" %a in (\"%npm_package_version%\") do if \"%a\" == \"%npm_package_version%\" (npm publish) else (npm publish --tag=next)\" || bash -c 'if [ \"${npm_package_version#*-}\" = \"${npm_package_version}\" ]; then npm publish; else npm publish --tag=next; fi'",
42
+ "publish:release": "cmd /q /c \"for /f \"delims=-\" %a in (\"%npm_package_version%\") do if \"%a\" == \"%npm_package_version%\" (npm publish) else (npm publish --tag=next)\" || bash -c 'if [ \"${npm_package_version#*-}\" = \"${npm_package_version}\" ]; then npm publish; else npm publish --tag=next; fi'",
46
43
  "predeploy": "npm run clean && npm test",
47
- "stage": "",
48
44
  "deploy": ""
49
45
  },
50
46
  "author": "Jimmy Zhening Luo <1450044+jimmy-zhening-luo@users.noreply.github.com> (https://jimm.my/)"