Skip to content

Commit

Permalink
Sander/fix orange (#20)
Browse files Browse the repository at this point in the history
* Fix orange color for chalk

* published update

* fix for orange color
  • Loading branch information
SanderElias authored Dec 16, 2019
1 parent bee5c61 commit bbca707
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion projects/scullyio/ng-lib/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion scully/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions scully/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scullyio/scully",
"version": "0.0.43",
"version": "0.0.44",
"description": "Scully CLI",
"repository": {
"type": "GIT",
Expand All @@ -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",
Expand Down
3 changes: 2 additions & 1 deletion scully/utils/log.ts
Original file line number Diff line number Diff line change
@@ -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));
Expand Down

0 comments on commit bbca707

Please sign in to comment.