diff --git a/README.md b/README.md index 3de8105b..f70422a5 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,11 @@ -# motorcortex-cli +# donkeyclip cli ## Usage -- `npx motorcortex newplugin ` 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 ` 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 + + +- `npx donkeyclip newclip ` will create a new folder with the provided name where you can have fun coding with code.dokeyclip.com + + + +- `npx donkeyclip newplugin ` will create a new folder with the provided name where you can have fun coding with code.dokeyclip.com diff --git a/package.json b/package.json index 0224ddaf..1a0d404c 100644 --- a/package.json +++ b/package.json @@ -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": { @@ -17,8 +17,11 @@ }, "keywords": [ "motorcortex", - "motorcortex-cli", - "cli" + "donkeyclip-cli", + "donkeyclip", + "cli", + "code", + "code-donkeyclip" ], "dependencies": { "nodegit": "0.27.0", diff --git a/src/config.js b/src/config.js index 2187e214..435b25a3 100644 --- a/src/config.js +++ b/src/config.js @@ -1,5 +1,5 @@ const USAGE = ` -Usage: motorcortex-cli +Usage: donkeyclip Available commands: - newplugin @@ -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 = { @@ -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 = {