Skip to content

Commit

Permalink
Merge cli-utils repository
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Sep 23, 2019
1 parent 9f5de03 commit 6bced11
Show file tree
Hide file tree
Showing 45 changed files with 706 additions and 88 deletions.
202 changes: 147 additions & 55 deletions package-lock.json

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

15 changes: 12 additions & 3 deletions package.json
Expand Up @@ -62,11 +62,11 @@
},
"dependencies": {
"@iarna/toml": "^2.2.3",
"@netlify/cli-utils": "^1.0.7",
"@netlify/zip-it-and-ship-it": "^0.3.1",
"@oclif/command": "^1.5.18",
"@oclif/config": "^1.13.2",
"@oclif/errors": "^1.1.2",
"@oclif/parser": "^3.8.4",
"@oclif/plugin-help": "^2.2.0",
"@oclif/plugin-not-found": "^1.1.4",
"@oclif/plugin-plugins": "^1.7.8",
Expand All @@ -82,9 +82,11 @@
"cli-spinners": "^1.3.1",
"cli-ux": "^5.2.1",
"concordance": "^4.0.0",
"configstore": "^5.0.0",
"cookie": "^0.4.0",
"copy-template-dir": "^1.4.0",
"debug": "^4.1.1",
"dot-prop": "^5.1.0",
"envinfo": "^7.3.1",
"execa": "^2.0.3",
"express": "^4.17.1",
Expand All @@ -105,9 +107,13 @@
"lodash.get": "^4.4.2",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash.pick": "^4.4.0",
"lodash.sample": "^4.2.1",
"lodash.snakecase": "^4.1.1",
"log-symbols": "^2.2.0",
"make-dir": "^3.0.0",
"minimist": "^1.2.0",
"netlify": "^2.4.8",
"netlify-cli-logo": "^1.0.0",
"netlify-redirector": "0.0.4",
Expand All @@ -127,8 +133,10 @@
"safe-join": "^0.1.3",
"static-server": "^2.2.1",
"update-notifier": "^2.5.0",
"uuid": "^3.3.3",
"wait-port": "^0.2.2",
"wrap-ansi": "^6.0.0"
"wrap-ansi": "^6.0.0",
"write-file-atomic": "^3.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
Expand Down Expand Up @@ -158,7 +166,8 @@
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"strip-ansi": "^5.2.0"
"strip-ansi": "^5.2.0",
"tempy": "^0.3.0"
},
"ava": {
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/commands/addons/auth.js
@@ -1,5 +1,5 @@
const Command = require('@netlify/cli-utils')
const { getAddons } = require('netlify/src/addons')
const Command = require('../../utils/command')
const openBrowser = require('../../utils/open-browser')

class AddonsAuthCommand extends Command {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/addons/config.js
@@ -1,4 +1,4 @@
const Command = require('@netlify/cli-utils')
const Command = require('../../utils/command')
const { getAddons, updateAddon } = require('netlify/src/addons')
const getAddonManifest = require('../../utils/addons/api')
const { requiredConfigValues, missingConfigValues, updateConfigValues } = require('../../utils/addons/validation')
Expand Down
2 changes: 1 addition & 1 deletion src/commands/addons/create.js
@@ -1,4 +1,4 @@
const Command = require('@netlify/cli-utils')
const Command = require('../../utils/command')
const { getAddons, createAddon } = require('netlify/src/addons')
const { parseRawFlags } = require('../../utils/parse-raw-flags')
const getAddonManifest = require('../../utils/addons/api')
Expand Down

0 comments on commit 6bced11

Please sign in to comment.