@simplysf/simply-project 1.2.2 → 1.2.5

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 +13 -8
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@simplysf/simply-project",
3
3
  "description": "Utilities for working with Salesforce projects",
4
- "version": "1.2.2",
4
+ "version": "1.2.5",
5
5
  "author": "@ClayChipps",
6
6
  "homepage": "https://github.com/SimplySF/simply",
7
7
  "bugs": "https://github.com/SimplySF/simply/issues",
@@ -80,10 +80,10 @@
80
80
  "lint": "wireit",
81
81
  "readme": "oclif readme --no-aliases",
82
82
  "test": "wireit",
83
- "test:coverage": "vitest run --coverage",
84
- "test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 1200000 --parallel --jobs 5",
83
+ "test:coverage": "vitest run --coverage --project simply-project",
84
+ "test:nuts": "vitest run --config vitest.nuts.config.ts --project simply-project",
85
85
  "test:only": "wireit",
86
- "test:watch": "vitest watch"
86
+ "test:watch": "vitest watch --project simply-project"
87
87
  },
88
88
  "wireit": {
89
89
  "build": {
@@ -98,6 +98,7 @@
98
98
  "files": [
99
99
  "src/**/*.ts",
100
100
  "**/tsconfig.json",
101
+ "../../tsconfig.json",
101
102
  "messages/**"
102
103
  ],
103
104
  "output": [
@@ -124,7 +125,9 @@
124
125
  "test/**/*.ts",
125
126
  "messages/**",
126
127
  "**/.eslint*",
127
- "**/tsconfig.json"
128
+ "**/tsconfig.json",
129
+ "../../eslint.config.mjs",
130
+ "../../tsconfig.json"
128
131
  ],
129
132
  "output": []
130
133
  },
@@ -173,12 +176,13 @@
173
176
  "command": "tsc -p \"./test\" --pretty",
174
177
  "files": [
175
178
  "test/**/*.ts",
176
- "**/tsconfig.json"
179
+ "**/tsconfig.json",
180
+ "../../tsconfig.json"
177
181
  ],
178
182
  "output": []
179
183
  },
180
184
  "test:only": {
181
- "command": "vitest run",
185
+ "command": "vitest run --project simply-project",
182
186
  "env": {
183
187
  "FORCE_COLOR": "2"
184
188
  },
@@ -186,6 +190,7 @@
186
190
  "test/**/*.ts",
187
191
  "src/**/*.ts",
188
192
  "**/tsconfig.json",
193
+ "../../tsconfig.json",
189
194
  "vitest.config.ts",
190
195
  "!*.nut.ts"
191
196
  ],
@@ -201,5 +206,5 @@
201
206
  "output": []
202
207
  }
203
208
  },
204
- "gitHead": "ddaa65ef57d74cbff83875acaec5e10beb7f77ba"
209
+ "gitHead": "6e5db1bed0c9e9c78e3ce5acdb04c18306b1462a"
205
210
  }