Skip to content

Commit 6a8e9b1

Browse files
deps: skuba 8.0.1 (#44)
* deps: skuba 8.0.1 * Run `skuba format` --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: skuba <> Co-authored-by: Ryan Ling <[email protected]>
1 parent 5d7c6de commit 6a8e9b1

File tree

8 files changed

+405
-636
lines changed

8 files changed

+405
-636
lines changed

.dockerignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ node_modules*/
1212
/tmp*/
1313

1414
.DS_Store
15-
.npmrc
1615
npm-debug.log
1716
yarn-error.log
1817
# end managed by skuba
1918

20-
!.npmrc

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
.vscode/*
44

55
.cdk.staging/
6+
.pnpm-store/
67
.serverless/
78
cdk.out/
89
node_modules*/

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ node_modules*/
1414

1515
.DS_Store
1616
.eslintcache
17-
.npmrc
17+
.pnpm-debug.log
1818
*.tgz
1919
*.tsbuildinfo
2020
npm-debug.log
@@ -27,4 +27,3 @@ yarn-error.log
2727
/packages/infra/src/assets/
2828
/packages/infra/src/version.ts
2929

30-
!.npmrc

.npmrc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# managed by skuba
2-
public-hoist-pattern[]=@types*
3-
public-hoist-pattern[]=*eslint*
4-
public-hoist-pattern[]=*prettier*
5-
public-hoist-pattern[]=tsconfig-seek
2+
public-hoist-pattern[]="@types*"
3+
public-hoist-pattern[]="*eslint*"
4+
public-hoist-pattern[]="*prettier*"
5+
public-hoist-pattern[]="esbuild"
6+
public-hoist-pattern[]="jest"
7+
public-hoist-pattern[]="tsconfig-seek"
68
# end managed by skuba

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@types/node": "^20.10.6",
2121
"dotenv": "16.3.1",
2222
"esbuild": "~0.20.0",
23-
"skuba": "7.3.1"
23+
"skuba": "8.0.1"
2424
},
2525
"packageManager": "[email protected]",
2626
"engines": {
@@ -30,6 +30,6 @@
3030
"entryPoint": "packages/hooks/src/index.ts",
3131
"template": "oss-npm-package",
3232
"type": "package",
33-
"version": "7.3.1"
33+
"version": "8.0.1"
3434
}
3535
}

packages/hooks/src/http.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ describe('isHttpHook', () => {
1616
];
1717
});
1818

19-
// eslint-disable-next-line @typescript-eslint/no-misused-promises
2019
return agent(app.callback())
2120
.get('/')
2221
.set('User-Agent', 'gantry-codedeploy-hook-BeforeAllowTraffic-dev/1.2.3')

packages/hooks/src/smokeTest/koa.test.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,7 @@ const run = ({ skipHook, smokeTest, userAgent }: Options) => {
2727
.use(koaMiddleware({ logger, skipHook }, smokeTest))
2828
.on('error', onError);
2929

30-
return agent(
31-
// eslint-disable-next-line @typescript-eslint/no-misused-promises
32-
app.callback(),
33-
)
34-
.get('/')
35-
.set('User-Agent', userAgent);
30+
return agent(app.callback()).get('/').set('User-Agent', userAgent);
3631
};
3732

3833
it.each`

0 commit comments

Comments
 (0)