This repository has been archived by the owner on Mar 14, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #221 from shipitjs/upgrade-deps
Upgrade deps
- Loading branch information
Showing
15 changed files
with
3,207 additions
and
964 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module.exports = { | ||
presets: [ | ||
[ | ||
'@babel/preset-env', | ||
{ | ||
targets: { | ||
node: '6', | ||
}, | ||
loose: true, | ||
}, | ||
], | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"lerna": "2.1.0", | ||
"lerna": "3.4.3", | ||
"npmClient": "yarn", | ||
"version": "4.1.1", | ||
"useWorkspaces": true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,12 @@ | |
"name": "shipit-cli", | ||
"version": "4.1.1", | ||
"description": "Universal automation and deployment tool written in JavaScript.", | ||
"engines": { | ||
"node": ">=6" | ||
}, | ||
"author": "Greg Bergé <[email protected]>", | ||
"license": "MIT", | ||
"repository": "https://github.com/shipitjs/shipit/tree/master/packages/shipit-deploy", | ||
"main": "lib/index.js", | ||
"keywords": [ | ||
"shipit", | ||
|
@@ -10,6 +16,14 @@ | |
"deploy", | ||
"ssh" | ||
], | ||
"scripts": { | ||
"prebuild": "rm -rf lib/", | ||
"build": "babel --config-file ../../babel.config.js -d lib --ignore \"**/*.test.js\" src", | ||
"prepublishOnly": "yarn run build" | ||
}, | ||
"bin": { | ||
"shipit": "./bin/shipit" | ||
}, | ||
"dependencies": { | ||
"chalk": "^2.4.1", | ||
"commander": "^2.15.0", | ||
|
@@ -20,22 +34,5 @@ | |
"ssh-pool": "^4.1.0", | ||
"stream-line-wrapper": "^0.1.1", | ||
"v8flags": "^3.1.0" | ||
}, | ||
"devDependencies": { | ||
"babel-cli": "^6.26.0", | ||
"mock-utf8-stream": "^0.1.1" | ||
}, | ||
"bin": { | ||
"shipit": "./bin/shipit" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/shipitjs/shipit.git" | ||
}, | ||
"author": "Greg Bergé <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/shipitjs/shipit/issues" | ||
}, | ||
"homepage": "https://github.com/shipitjs/shipit" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,12 @@ | |
"name": "shipit-deploy", | ||
"version": "4.1.1", | ||
"description": "Official set of deploy tasks for Shipit.", | ||
"engines": { | ||
"node": ">=6" | ||
}, | ||
"author": "Greg Bergé <[email protected]>", | ||
"license": "MIT", | ||
"repository": "https://github.com/shipitjs/shipit/tree/master/packages/shipit-deploy", | ||
"main": "lib/index.js", | ||
"keywords": [ | ||
"shipit", | ||
|
@@ -10,6 +16,11 @@ | |
"deploy", | ||
"ssh" | ||
], | ||
"scripts": { | ||
"prebuild": "rm -rf lib/", | ||
"build": "babel --config-file ../../babel.config.js -d lib --ignore \"**/*.test.js\" src", | ||
"prepublishOnly": "yarn run build" | ||
}, | ||
"peerDependencies": { | ||
"shipit-cli": "^4.1.0" | ||
}, | ||
|
@@ -21,18 +32,5 @@ | |
"rmfr": "^1.0.8", | ||
"shipit-utils": "^1.1.3", | ||
"tmp-promise": "^1.0.4" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/shipitjs/shipit.git" | ||
}, | ||
"author": "Greg Bergé <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/shipitjs/shipit/issues" | ||
}, | ||
"homepage": "https://github.com/shipitjs/shipit", | ||
"devDependencies": { | ||
"ssh-pool": "^4.1.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/* eslint-disable import/no-extraneous-dependencies */ | ||
import path from 'path' | ||
import { exec } from 'ssh-pool' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* eslint-disable no-console */ | ||
import shipitDeploy from '../../' | ||
import shipitDeploy from '../..' | ||
|
||
export default shipit => { | ||
shipitDeploy(shipit) | ||
|
@@ -11,7 +11,7 @@ export default shipit => { | |
deployTo: '/tmp/shipit', | ||
repositoryUrl: 'https://github.com/shipitjs/shipit.git', | ||
ignores: ['.git', 'node_modules'], | ||
shallowClone: true | ||
shallowClone: true, | ||
}, | ||
test: { | ||
servers: '[email protected]', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,24 @@ | |
"name": "ssh-pool", | ||
"version": "4.1.0", | ||
"description": "Run remote commands over a pool of server using SSH.", | ||
"main": "lib/index.js", | ||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-traverse", | ||
"author": "Bergé Greg <[email protected]>", | ||
"engines": { | ||
"node": ">=6" | ||
}, | ||
"author": "Greg Bergé <[email protected]>", | ||
"license": "MIT", | ||
"homepage": "https://github.com/shipitjs/shipit", | ||
"repository": "https://github.com/shipitjs/shipit/tree/master/packages/shipit-deploy", | ||
"main": "lib/index.js", | ||
"keywords": [ | ||
"shipit", | ||
"automation", | ||
"deployment", | ||
"ssh" | ||
], | ||
"scripts": { | ||
"prebuild": "rm -rf lib/", | ||
"build": "babel --config-file ../../babel.config.js -d lib --ignore \"**/*.test.js\" src", | ||
"prepublishOnly": "yarn run build" | ||
}, | ||
"dependencies": { | ||
"stream-line-wrapper": "^0.1.1", | ||
"tmp": "^0.0.33", | ||
|
Empty file.
Empty file.
Oops, something went wrong.