@hardimpactdev/craft-ui 0.0.15 → 0.0.16

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.
@@ -0,0 +1 @@
1
+ export {};
@@ -40,17 +40,17 @@ function getArtisanRunners() {
40
40
  {
41
41
  name: "waymaker",
42
42
  run: ["php", "artisan", "waymaker:generate"],
43
- pattern: ["app/**/Http/**/*.php"]
43
+ pattern: ["app/**/Http/**/*.php", "src/**/Http/**/*.php"]
44
44
  },
45
45
  {
46
46
  name: "wayfinder",
47
47
  run: ["php", "artisan", "wayfinder:generate"],
48
- pattern: ["routes/*.php", "app/**/Http/**/*.php"]
48
+ pattern: ["routes/*.php", "app/**/Http/**/*.php", "src/**/Http/**/*.php"]
49
49
  },
50
50
  {
51
51
  name: "typescript",
52
52
  run: ["php", "artisan", "typescript:transform"],
53
- pattern: ["app/{Data,Enums}/**/*.php"]
53
+ pattern: ["app/{Data,Enums}/**/*.php", "src/{Data,Enums}/**/*.php"]
54
54
  }
55
55
  ]);
56
56
  }
@@ -70,17 +70,17 @@ function getArtisanRunners() {
70
70
  {
71
71
  name: 'waymaker',
72
72
  run: ['php', 'artisan', 'waymaker:generate'],
73
- pattern: ['app/**/Http/**/*.php'],
73
+ pattern: ['app/**/Http/**/*.php', 'src/**/Http/**/*.php'],
74
74
  },
75
75
  {
76
76
  name: 'wayfinder',
77
77
  run: ['php', 'artisan', 'wayfinder:generate'],
78
- pattern: ['routes/*.php', 'app/**/Http/**/*.php'],
78
+ pattern: ['routes/*.php', 'app/**/Http/**/*.php', 'src/**/Http/**/*.php'],
79
79
  },
80
80
  {
81
81
  name: 'typescript',
82
82
  run: ['php', 'artisan', 'typescript:transform'],
83
- pattern: ['app/{Data,Enums}/**/*.php'],
83
+ pattern: ['app/{Data,Enums}/**/*.php', 'src/{Data,Enums}/**/*.php'],
84
84
  },
85
85
  ]);
86
86
  }
package/package.json CHANGED
@@ -56,7 +56,7 @@
56
56
  "types": "./dist/src/vite/defineCraftConfig.d.ts"
57
57
  }
58
58
  },
59
- "version": "0.0.15",
59
+ "version": "0.0.16",
60
60
  "type": "module",
61
61
  "scripts": {
62
62
  "dev": "vite",
@@ -69,7 +69,11 @@
69
69
  "format": "oxfmt",
70
70
  "format:check": "oxfmt --check",
71
71
  "lint": "oxlint",
72
- "lint:fix": "oxlint --fix"
72
+ "lint:fix": "oxlint --fix",
73
+ "test": "vitest --project=unit --run",
74
+ "test:watch": "vitest --project=unit",
75
+ "test:storybook": "vitest --project=storybook --run",
76
+ "test:all": "vitest --run"
73
77
  },
74
78
  "dependencies": {
75
79
  "@iconify/vue": "^5.0.0",
@@ -116,6 +120,7 @@
116
120
  "@vitest/coverage-v8": "^4.0.16",
117
121
  "@vue/tsconfig": "^0.8.1",
118
122
  "glob": "^13.0.0",
123
+ "happy-dom": "^20.3.3",
119
124
  "oxfmt": "^0.24.0",
120
125
  "playwright": "^1.57.0",
121
126
  "storybook": "^10.1.11",