@simplysf/simply-permissions 1.2.4 → 1.2.6
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.
- package/package.json +13 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysf/simply-permissions",
|
|
3
3
|
"description": "Utilities for working with permissions",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.6",
|
|
5
5
|
"author": "@ClayChipps",
|
|
6
6
|
"homepage": "https://github.com/SimplySF/simply",
|
|
7
7
|
"bugs": "https://github.com/SimplySF/simply/issues",
|
|
@@ -82,10 +82,10 @@
|
|
|
82
82
|
"lint": "wireit",
|
|
83
83
|
"readme": "oclif readme --no-aliases",
|
|
84
84
|
"test": "wireit",
|
|
85
|
-
"test:coverage": "vitest run --coverage",
|
|
86
|
-
"test:nuts": "vitest run --config vitest.nuts.config.ts",
|
|
85
|
+
"test:coverage": "vitest run --coverage --project simply-permissions",
|
|
86
|
+
"test:nuts": "vitest run --config vitest.nuts.config.ts --project simply-permissions",
|
|
87
87
|
"test:only": "wireit",
|
|
88
|
-
"test:watch": "vitest watch"
|
|
88
|
+
"test:watch": "vitest watch --project simply-permissions"
|
|
89
89
|
},
|
|
90
90
|
"wireit": {
|
|
91
91
|
"build": {
|
|
@@ -100,6 +100,7 @@
|
|
|
100
100
|
"files": [
|
|
101
101
|
"src/**/*.ts",
|
|
102
102
|
"**/tsconfig.json",
|
|
103
|
+
"../../tsconfig.json",
|
|
103
104
|
"messages/**"
|
|
104
105
|
],
|
|
105
106
|
"output": [
|
|
@@ -126,7 +127,9 @@
|
|
|
126
127
|
"test/**/*.ts",
|
|
127
128
|
"messages/**",
|
|
128
129
|
"**/.eslint*",
|
|
129
|
-
"**/tsconfig.json"
|
|
130
|
+
"**/tsconfig.json",
|
|
131
|
+
"../../eslint.config.mjs",
|
|
132
|
+
"../../tsconfig.json"
|
|
130
133
|
],
|
|
131
134
|
"output": []
|
|
132
135
|
},
|
|
@@ -175,12 +178,13 @@
|
|
|
175
178
|
"command": "tsc -p \"./test\" --pretty",
|
|
176
179
|
"files": [
|
|
177
180
|
"test/**/*.ts",
|
|
178
|
-
"**/tsconfig.json"
|
|
181
|
+
"**/tsconfig.json",
|
|
182
|
+
"../../tsconfig.json"
|
|
179
183
|
],
|
|
180
184
|
"output": []
|
|
181
185
|
},
|
|
182
186
|
"test:only": {
|
|
183
|
-
"command": "vitest run",
|
|
187
|
+
"command": "vitest run --project simply-permissions",
|
|
184
188
|
"env": {
|
|
185
189
|
"FORCE_COLOR": "2"
|
|
186
190
|
},
|
|
@@ -188,6 +192,7 @@
|
|
|
188
192
|
"test/**/*.ts",
|
|
189
193
|
"src/**/*.ts",
|
|
190
194
|
"**/tsconfig.json",
|
|
195
|
+
"../../tsconfig.json",
|
|
191
196
|
"vitest.config.ts",
|
|
192
197
|
"!*.nut.ts"
|
|
193
198
|
],
|
|
@@ -203,5 +208,5 @@
|
|
|
203
208
|
"output": []
|
|
204
209
|
}
|
|
205
210
|
},
|
|
206
|
-
"gitHead": "
|
|
211
|
+
"gitHead": "7aa1d3a90fdece2bce621a04a507254400b05fd9"
|
|
207
212
|
}
|