Skip to content

Commit

Permalink
fix(deps): bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Airkro committed Dec 19, 2023
1 parent 21721ed commit 17a1056
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 17 deletions.
20 changes: 12 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"bundle": [
"packages/**"
],
"internal-regex": "^@bring-it\\/"
"internal-regex": "^@bring-it\\/utils"
},
"prettier": "@nice-move/prettier-config"
}
1 change: 0 additions & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
"yargs": "^17.7.2"
},
"devDependencies": {
"@bring-it/utils": "*",
"cheetor": "^0.13.0"
},
"engines": {
Expand Down
6 changes: 3 additions & 3 deletions packages/sample/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bring-it/sample",
"version": "0.3.1",
"version": "0.3.2",
"description": "Generate code sample files",
"license": "MIT",
"author": {
Expand Down Expand Up @@ -37,8 +37,8 @@
"dependencies": {
"globby": "^14.0.0"
},
"devDependencies": {
"@bring-it/utils": "*"
"peerDependencies": {
"@bring-it/cli": "^0.8.0"
},
"engines": {
"node": "^18.0.0 || ^20.0.0"
Expand Down
6 changes: 4 additions & 2 deletions packages/sentry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bring-it/sentry",
"version": "0.3.1",
"version": "0.3.2",
"description": "Update sentry artifacts",
"license": "MIT",
"author": {
Expand Down Expand Up @@ -38,9 +38,11 @@
"globby": "^14.0.0"
},
"devDependencies": {
"@bring-it/utils": "*",
"@npmcli/promise-spawn": "^7.0.0"
},
"peerDependencies": {
"@bring-it/cli": "^0.8.0"
},
"engines": {
"node": "^18.0.0 || ^20.0.0"
},
Expand Down
1 change: 1 addition & 0 deletions packages/sftp/lib/sftp/action.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ function parsePath(cwd = preset.cwd) {
);
}

// eslint-disable-next-line consistent-return
export async function action({ key, cwd, server, path: forcePath }) {
const { user, hostname, port, path: filePath } = checkServer(server);

Expand Down
2 changes: 1 addition & 1 deletion packages/sftp/lib/sftp/ssh.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function SSH({ user, hostname, port, key }, callback) {

ssh.connection.on('close', () => {
logger.info('Connection:', 'close');
// eslint-disable-next-line unicorn/no-process-exit
// eslint-disable-next-line unicorn/no-process-exit, n/no-process-exit
process.exit();
});
})
Expand Down
5 changes: 4 additions & 1 deletion packages/sftp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bring-it/sftp",
"version": "0.2.1",
"version": "0.2.2",
"description": "SFTP deployment tool for frontend",
"license": "MIT",
"author": {
Expand Down Expand Up @@ -48,6 +48,9 @@
"slash": "^5.1.0",
"ssh-config": "^4.4.1"
},
"peerDependencies": {
"@bring-it/cli": "^0.8.0"
},
"engines": {
"node": "^18.0.0 || ^20.0.0"
},
Expand Down

0 comments on commit 17a1056

Please sign in to comment.