create-halo-plugin-template 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/ui/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-halo-plugin-template",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Create and initialize reusable Halo plugin starter projects.",
5
5
  "type": "module",
6
6
  "license": "GPL-3.0",
package/ui/package.json CHANGED
@@ -4,8 +4,8 @@
4
4
  "build": "run-p type-check \"build-only {@}\" --",
5
5
  "build-only": "vite build",
6
6
  "dev": "vite build --watch --mode=development",
7
- "lint:oxlint": "oxlint . --fix -D correctness --ignore-path ../.gitignore",
8
- "lint:eslint": "eslint . --fix",
7
+ "lint:oxlint": "oxlint . --fix -D correctness --ignore-path ../.gitignore --ignore-pattern build",
8
+ "lint:eslint": "eslint . --fix --ignore-pattern build",
9
9
  "lint": "run-s lint:*",
10
10
  "prettier": "prettier --write src/",
11
11
  "test:unit": "vitest --passWithNoTests",