New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cleverstack-cli

Package Overview
Dependencies
Maintainers
3
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cleverstack-cli - npm Package Compare versions

Comparing version 1.1.4 to 1.1.5

9

package.json
{
"name": "cleverstack-cli",
"description": "Command line interface for CleverStack",
"version": "1.1.4",
"version": "1.1.5",
"main": "./index.js",

@@ -84,3 +84,3 @@ "author": {

],
"license": "BSD-2-Clause",
"license": "MIT",
"dependencies": {

@@ -107,3 +107,4 @@ "async": "~0.9.0",

"tar": "~1.0.2",
"update-notifier": "^0.3.0"
"update-notifier": "^0.3.0",
"configstore": "^0.3.1"
},

@@ -124,2 +125,2 @@ "devDependencies": {

}
}
}

@@ -281,9 +281,15 @@ # CleverStack CLI

Commands:
Commands:
build - Builds production-ready code for the frontend seed
downgrade - Downgrades a CleverStack implementation
help - Displays this help message
init <project> [backend|frontend] - Initialized a new project
install <modules> - Installs a module within CleverStack
generate <option> <name> - Generates a controller, service, model, etc. individually
list - Lists all of the available CleverStack modules
new <name> - Scaffolds into a specific directory called <name>
remove <modules> - Removes a module within CleverStack
repl - Starts the CleverStack REPL
routes - Displays your project's routes
scaffold <name> - Generates a controller, service, model, etc.

@@ -330,20 +336,20 @@ search [query] - Searches for a cleverstack module

service <name> Generates a service as <name> within /Users/jenniferhartwig/services
services <names> Generates services specified with <name ...> within /Users/jenniferhartwig/services
controller <name> Generates a controller as <name> within /Users/jenniferhartwig/controllers
controllers <names> Generates controllers specified with <name ...> within /Users/jenniferhartwig/controllers
model <name> Generates a model as <name> within /Users/jenniferhartwig/models
models <names> Generates models specified with <name ...> within /Users/jenniferhartwig/models
task <name> Generates a task as <name> within /Users/jenniferhartwig/tasks
tasks <names> Generates tasks specified with <name ...> within /Users/jenniferhartwig/tasks
view <name> Generates a view as <name> within /Users/jenniferhartwig/views
views <names> Generates views specified with <name ...> within /Users/jenniferhartwig/views
factory <name> Generates a factory as <name> within /Users/jenniferhartwig/factories
factories <names> Generates factories specified with <name ...> within /Users/jenniferhartwig/factories
service <name> Generates a service as <name> within /Users/jenniferhartwig/services
services <names> Generates services specified with <name ...> within /Users/jenniferhartwig/services
directive <name> Generates a directive as <name> within /Users/jenniferhartwig/directives
directives <names> Generates directives specified with <name ...> within /Users/jenniferhartwig/directives
test [options] <name> Generates a test t as <name> within /Users/jenniferhartwig/tests
tests [options] <names> Generates test specified with <name ...> within /Users/jenniferhartwig/tests
service <name> Generates a service as <name> within /Users/richardgustin/Documents/Projects/CleverStack/services
services <names> Generates services specified with <name ...> within /Users/richardgustin/Documents/Projects/CleverStack/services
controller <name> Generates a controller as <name> within /Users/richardgustin/Documents/Projects/CleverStack/controllers
controllers <names> Generates controllers specified with <name ...> within /Users/richardgustin/Documents/Projects/CleverStack/controllers
model <name> Generates a model as <name> within /Users/richardgustin/Documents/Projects/CleverStack/models
models <names> Generates models specified with <name ...> within /Users/richardgustin/Documents/Projects/CleverStack/models
task <name> Generates a task as <name> within /Users/richardgustin/Documents/Projects/CleverStack/tasks
tasks <names> Generates tasks specified with <name ...> within /Users/richardgustin/Documents/Projects/CleverStack/tasks
view <name> Generates a view as <name> within /Users/richardgustin/Documents/Projects/CleverStack/views
views <names> Generates views specified with <name ...> within /Users/richardgustin/Documents/Projects/CleverStack/views
factory <name> Generates a factory as <name> within /Users/richardgustin/Documents/Projects/CleverStack/factories
factories <names> Generates factories specified with <name ...> within /Users/richardgustin/Documents/Projects/CleverStack/factories
service <name> Generates a service as <name> within /Users/richardgustin/Documents/Projects/CleverStack/services
services <names> Generates services specified with <name ...> within /Users/richardgustin/Documents/Projects/CleverStack/services
directive <name> Generates a directive as <name> within /Users/richardgustin/Documents/Projects/CleverStack/directives
directives <names> Generates directives specified with <name ...> within /Users/richardgustin/Documents/Projects/CleverStack/directives
test [options] <name> Generates a test t as <name> within /Users/richardgustin/Documents/Projects/CleverStack/tests
tests [options] <names> Generates test specified with <name ...> within /Users/richardgustin/Documents/Projects/CleverStack/tests

@@ -372,3 +378,3 @@ Options:

<project> creates a new project named <project>
<project> creates a new project named <project>

@@ -378,6 +384,7 @@ Options:

-h, --help output usage information
-f, --force delete existing projects in your current directory /Users/jenniferhartwig
-f, --force delete existing projects in your current directory /Users/richardgustin/Documents/Projects/CleverStack
-v, --verbose verbose output useful for debugging
-A, --allow-root allow root for bower
-S, --skip-protractor skips installing protractor (Frontend only)
-B, --bootstrap will run `grunt bootstrap build` as part of the setup
-V, --version output the version number

@@ -467,6 +474,8 @@

```
Scanning for seed locations...
Welcome to CleverStack version 0.0.2
Type .commands or .help for a list of commands
richards-mbp:test-jan-2015 richardgustin$ clever repl
✔ Welcome to CleverStack using seed version 1.2.0-rc-2
✔ Type .commands or .help for a list of commands
cleverstack::local> .commands
.commands Lists all of the REPL commands

@@ -477,2 +486,3 @@ .help Alias for .commands

.models Lists all models
.services Lists all services
.exit Exits the CleverStack REPL

@@ -482,2 +492,3 @@ .quit Alias for .exit

.history Show command history
cleverstack::local> .quit

@@ -541,2 +552,3 @@ ```

-S, --skip-protractor skips installing protractor (Frontend only)
-B, --bootstrap will run `grunt bootstrap build` as part of the setup
-v, --verbose verbose output useful for debugging

@@ -543,0 +555,0 @@ -V, --version output the version number

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc