diff --git a/projects/scullyio/ng-lib/package.json b/projects/scullyio/ng-lib/package.json index 749191999..c29beff60 100644 --- a/projects/scullyio/ng-lib/package.json +++ b/projects/scullyio/ng-lib/package.json @@ -1,6 +1,6 @@ { "name": "@scullyio/ng-lib", - "version": "0.0.4", + "version": "0.0.5", "repository": { "type": "GIT", "url": "https://github.com/scullyio/scully/tree/master/projects/scullyio/ng-lib" diff --git a/scully/package-lock.json b/scully/package-lock.json index 83da1d2ea..bf2b8cea9 100644 --- a/scully/package-lock.json +++ b/scully/package-lock.json @@ -1,6 +1,6 @@ { "name": "@scullyio/scully", - "version": "0.0.43", + "version": "0.0.44", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/scully/package.json b/scully/package.json index 10d7528c1..2deb4bdef 100644 --- a/scully/package.json +++ b/scully/package.json @@ -1,6 +1,6 @@ { "name": "@scullyio/scully", - "version": "0.0.43", + "version": "0.0.44", "description": "Scully CLI", "repository": { "type": "GIT", @@ -15,9 +15,9 @@ "start": "tsc -p ./tsconfig.scully.json -w", "commit": "git add . && git commit -m \"add new version build\"", "push": "git push origin master", - "publish:patch": "tsc -p ./tsconfig.scully.json && npm version patch && npm run commit && npm publish && npm run push", - "publish:minor": "tsc -p ./tsconfig.scully.json && npm version minor && npm run commit && npm publish && npm run push", - "publish:major": "tsc -p ./tsconfig.scully.json && npm version major && npm run commit && npm publish && npm run push" + "publish:patch": "tsc -p ./tsconfig.scully.json && npm version patch", + "publish:minor": "tsc -p ./tsconfig.scully.json && npm version minor", + "publish:major": "tsc -p ./tsconfig.scully.json && npm version major" }, "dependencies": { "@types/express": "^4.17.0", diff --git a/scully/utils/log.ts b/scully/utils/log.ts index ec1444381..7ac00291f 100644 --- a/scully/utils/log.ts +++ b/scully/utils/log.ts @@ -1,6 +1,7 @@ import chalk from 'chalk'; -export const {white, red, yellow, green, orange}: {[x: string]: any} = chalk; +export const orange = chalk.hex('#FFA500'); +export const {white, red, yellow, green}: {[x: string]: any} = chalk; export const log = (...a) => console.log(white(...a)); export const logError = (...a) => console.log(red(...a));