@public-ui/kolibri-cli 3.0.0-rc.7 → 3.0.0-rc.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.
Files changed (1) hide show
  1. package/package.json +5 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@public-ui/kolibri-cli",
3
- "version": "3.0.0-rc.7",
3
+ "version": "3.0.0-rc.8",
4
4
  "license": "EUPL-1.2",
5
5
  "homepage": "https://public-ui.github.io",
6
6
  "repository": {
@@ -47,7 +47,7 @@
47
47
  "rimraf": "6.0.1",
48
48
  "ts-node": "10.9.2",
49
49
  "typescript": "5.8.2",
50
- "@public-ui/components": "3.0.0-rc.7"
50
+ "@public-ui/components": "3.0.0-rc.8"
51
51
  },
52
52
  "files": [
53
53
  "dist"
@@ -56,7 +56,9 @@
56
56
  "build": "tsc",
57
57
  "reset": "pnpm i @public-ui/components@1.1.7",
58
58
  "format": "prettier -c src",
59
- "lint": "tsc --noemit && eslint src",
59
+ "lint": "pnpm lint:eslint && pnpm lint:tsc",
60
+ "lint:eslint": "eslint src",
61
+ "lint:tsc": "tsc --noemit",
60
62
  "start": "rimraf test && cpy \"../../samples/react/src/components\" test/src && cpy \"../../samples/react/public/*.html\" test/ && ts-node src/index.ts migrate --ignore-uncommitted-changes --test-tasks test",
61
63
  "restart": "pnpm reset && pnpm start",
62
64
  "unused": "knip",