Skip to content

Commit

Permalink
fix: change name
Browse files Browse the repository at this point in the history
  • Loading branch information
prieston committed Sep 30, 2021
1 parent 9426420 commit 98993be
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# motorcortex-cli
# donkeyclip cli

## Usage

- `npx motorcortex newplugin <name>` will create a new folder with the provided name, will
clone [MotorCortex Plugin Starter Repo](https://github.com/donkeyclip/motorcortex-plugin-starter),
and npm install.
- `npx motorcortex newclip <name>` will create a new folder with the provided name, clone the
[MotorCortex Clip Starter Repo](https://github.com/donkeyclip/motorcortex-clip-starter)
and npm install
<!-- TODO: think about this phrase -->

- `npx donkeyclip newclip <name>` will create a new folder with the provided name where you can have fun coding with code.dokeyclip.com

<!-- TODO: think about this phrase -->

- `npx donkeyclip newplugin <name>` will create a new folder with the provided name where you can have fun coding with code.dokeyclip.com
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@donkeyclip/motorcortex-cli",
"name": "donkeyclip",
"version": "1.0.1",
"description": "Command Line tools for MotorCortex",
"main": "dist/bundle.cjs.js",
"repository": {
"type": "git",
"url": "https://github.com/donkeyclip/motorcortex-cli"
"url": "https://github.com/donkeyclip/cli"
},
"license": "MIT",
"engines": {
Expand All @@ -17,8 +17,11 @@
},
"keywords": [
"motorcortex",
"motorcortex-cli",
"cli"
"donkeyclip-cli",
"donkeyclip",
"cli",
"code",
"code-donkeyclip"
],
"dependencies": {
"nodegit": "0.27.0",
Expand Down
5 changes: 1 addition & 4 deletions src/config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const USAGE = `
Usage: motorcortex-cli <command> <project-name>
Usage: donkeyclip <command> <project-name>
Available commands:
- newplugin
Expand All @@ -11,8 +11,6 @@ Available commands:
finish:(projectName)=>`Your project workspace is ready on folder "${projectName}". Be creative and have fun!`,
folderExists: (projectName) => `Folder "${projectName}" already exists`,
unexpectedError: "Unexpected error!"


};

const CLONE_OPTIONS = {
Expand All @@ -25,7 +23,6 @@ const CLONE_OPTIONS = {
const STARTER_REPO = {
newplugin:"https://github.com/donkeyclip/motorcortex-plugin-starter",
newclip:"https://github.com/donkeyclip/motorcortex-clip-starter"

};

module.exports = {
Expand Down

0 comments on commit 98993be

Please # to comment.