sku 14.0.4 → 14.0.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # sku
2
2
 
3
+ ## 14.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - `sku test`: Fixes a bug where extra CLI arguments were not being passed through to `jest` ([#1193](https://github.com/seek-oss/sku/pull/1193))
8
+
3
9
  ## 14.0.4
4
10
 
5
11
  ### Patch Changes
@@ -1,6 +1,7 @@
1
1
  import type { SkuContext } from "../../../context/createSkuContext.js";
2
- declare const testAction: ({ args, skuContext, }: {
3
- args: string[];
2
+ declare const testAction: ({ skuContext, }: {
4
3
  skuContext: SkuContext;
4
+ }, { args }: {
5
+ args: string[];
5
6
  }) => Promise<void>;
6
7
  export { testAction };
@@ -5,7 +5,7 @@ import { runVocabCompile } from "../../../services/vocab/runVocab.js";
5
5
  import { configureProject } from "../../../utils/configure.js";
6
6
  const { run } = jest;
7
7
  const log = debug('sku:jest');
8
- const testAction = async ({ args = [], skuContext, }) => {
8
+ const testAction = async ({ skuContext, }, { args = [] }) => {
9
9
  await configureProject(skuContext);
10
10
  await runVocabCompile(skuContext);
11
11
  // https://jestjs.io/docs/configuration#preset-string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sku",
3
- "version": "14.0.4",
3
+ "version": "14.0.5",
4
4
  "description": "Front-end development toolkit, powered by Webpack, Babel, Vanilla Extract and Jest",
5
5
  "types": "./dist/index.d.ts",
6
6
  "bin": {