Skip to content

Commit

Permalink
removed unnecessary deps for the cli
Browse files Browse the repository at this point in the history
  • Loading branch information
idancali committed Feb 7, 2019
1 parent d32005d commit 461a3b0
Show file tree
Hide file tree
Showing 7 changed files with 1,080 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ node_modules
coverage
build
package-lock.json

\.idea/
dist
2 changes: 1 addition & 1 deletion cli/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ coverage
.circleci
product
.DS_Store

dist
2 changes: 1 addition & 1 deletion cli/bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
const path = require('path')
const slana = require('slana')

slana.run(path.dirname(__dirname))
slana.run(path.join(__dirname, '..'))
1 change: 0 additions & 1 deletion cli/executors/carmel/actions/next/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ const utils = require('../../utils')
const chalk = require('chalk')
const env = require('../../validate/env')
const opn = require('opn')
const casual = require('casual')
const marked = require('marked')

const TerminalRenderer = require('marked-terminal')
Expand Down
1 change: 0 additions & 1 deletion cli/executors/carmel/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const status = require('./status')
const operation = require('./operation')
const input = require('./input')
const inquirer = require('inquirer')
const notifier = require('node-notifier')
const path = require('path')
const boxen = require('boxen')
const Base64 = require('js-base64').Base64;
Expand Down
13 changes: 11 additions & 2 deletions cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chunky-cli",
"version": "1.0.22",
"version": "1.0.23",
"description": "The Chunky Command Line Interface",
"preferGlobal": true,
"scripts": {
Expand All @@ -21,6 +21,16 @@
"bugs": {
"url": "https://github.com/fluidtrends/chunky/issues"
},
"pkg": {
"scripts": "bin/cli.js",
"assets": [
"slana.yml",
"executors/**/",
"xdg-open",
"src/**/",
"assets/**/*"
]
},
"homepage": "https://github.com/fluidtrends/chunky",
"dependencies": {
"@octokit/rest": "^16.3.0",
Expand Down Expand Up @@ -67,7 +77,6 @@
"mocha": "^5.2.0",
"node-fetch": "^2.3.0",
"node-localstorage": "^1.3.1",
"node-notifier": "^5.3.0",
"npm": "^6.7.0",
"npm-registry-fetch": "^3.8.0",
"npminstall": "^3.20.2",
Expand Down
Loading

0 comments on commit 461a3b0

Please sign in to comment.