Skip to content

Commit

Permalink
Run skuba format
Browse files Browse the repository at this point in the history
  • Loading branch information
seek-oss-ci committed Jan 14, 2024
1 parent e37a49c commit d6d1c47
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1429,9 +1429,9 @@
"compilerOptions": {
"baseUrl": ".",
"paths": {
"src": ["src"]
}
}
"src": ["src"],
},
},
}
```

Expand Down
6 changes: 3 additions & 3 deletions docs/cli/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ By convention, this points to a `tsconfig.build.json` that excludes tests from y
{
"exclude": ["**/__mocks__/**/*", "**/*.test.ts", "src/testing/**/*"],
"extends": "tsconfig.json",
"include": ["src/**/*"]
"include": ["src/**/*"],
}
```

```jsonc
// tsconfig.json
{
"compilerOptions": {
"outDir": "lib"
"outDir": "lib",
},
"exclude": ["lib*/**/*"]
"exclude": ["lib*/**/*"],
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/deep-dives/babel.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ Discussion continues in the [esbuild](./esbuild.md) deep dive.
```jsonc
{
"skuba": {
"babel": true
}
"babel": true,
},
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/deep-dives/esbuild.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ At the same time, esbuild presents potential benefits for **skuba**:
```jsonc
{
"skuba": {
"build": "esbuild"
}
"build": "esbuild",
},
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/migration-guides/seek-module-toolkit.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ Expect something like this:
"lib*/**/*.d.ts",
"lib*/**/*.js",
"lib*/**/*.js.map",
"lib*/**/*.json"
"lib*/**/*.json",
],
"main": "./lib-commonjs/index.js",
"module": "./lib-es2015/index.js",
"types": "./lib-types/index.d.ts"
"types": "./lib-types/index.d.ts",
}
```

Expand Down

0 comments on commit d6d1c47

Please sign in to comment.