Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: seek-oss/sku
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: sku@14.0.4
Choose a base ref
...
head repository: seek-oss/sku
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: sku@14.0.5
Choose a head ref
  • 3 commits
  • 4 files changed
  • 3 contributors

Commits on Feb 25, 2025

  1. Update dangerouslySetESLint docs to reflect eslint v9 config interf…

    …ace (#1190)
    askoufis authored Feb 25, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    b482f6c View commit details

Commits on Feb 27, 2025

  1. Pass through extra CLI arguments to jest (#1193)

    askoufis authored Feb 27, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    61e3bb3 View commit details
  2. Version Packages (#1194)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    seek-oss-ci and github-actions[bot] authored Feb 27, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    51bf6f3 View commit details
Showing with 27 additions and 11 deletions.
  1. +12 −3 docs/docs/configuration.md
  2. +6 −0 packages/sku/CHANGELOG.md
  3. +1 −1 packages/sku/package.json
  4. +8 −7 packages/sku/src/program/commands/test/test.action.ts
15 changes: 12 additions & 3 deletions docs/docs/configuration.md
Original file line number Diff line number Diff line change
@@ -85,11 +85,20 @@ If you believe other consumers would benefit from the addition/removal/modificat
Example:

```ts
import customPlugin from 'custom-eslint-plugin';

export default {
dangerouslySetESLintConfig: (skuEslintConfig) => ({
dangerouslySetESLintConfig: (skuEslintConfig) => [
...skuEslintConfig,
someOtherConfig: 'dangerousValue',
}),
{
plugins: {
customPlugin,
},
rules: {
'customPlugin/rule1': 'warn',
},
},
],
} satisfies SkuConfig;
```

6 changes: 6 additions & 0 deletions packages/sku/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# sku

## 14.0.5

### Patch Changes

- `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))

## 14.0.4

### Patch Changes
2 changes: 1 addition & 1 deletion packages/sku/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sku",
"version": "14.0.4",
"version": "14.0.5",
"description": "Front-end development toolkit, powered by Webpack, Babel, Vanilla Extract and Jest",
"types": "./dist/index.d.ts",
"bin": {
15 changes: 8 additions & 7 deletions packages/sku/src/program/commands/test/test.action.ts
Original file line number Diff line number Diff line change
@@ -10,13 +10,14 @@ const { run } = jest;

const log = debug('sku:jest');

const testAction = async ({
args = [],
skuContext,
}: {
args: string[];
skuContext: SkuContext;
}) => {
const testAction = async (
{
skuContext,
}: {
skuContext: SkuContext;
},
{ args = [] }: { args: string[] },
) => {
await configureProject(skuContext);
await runVocabCompile(skuContext);