Skip to content

Commit bbca707

Browse files
authored
Sander/fix orange (#20)
* Fix orange color for chalk * published update * fix for orange color
1 parent bee5c61 commit bbca707

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

projects/scullyio/ng-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scullyio/ng-lib",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"repository": {
55
"type": "GIT",
66
"url": "https://github.com/scullyio/scully/tree/master/projects/scullyio/ng-lib"

scully/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scully/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scullyio/scully",
3-
"version": "0.0.43",
3+
"version": "0.0.44",
44
"description": "Scully CLI",
55
"repository": {
66
"type": "GIT",
@@ -15,9 +15,9 @@
1515
"start": "tsc -p ./tsconfig.scully.json -w",
1616
"commit": "git add . && git commit -m \"add new version build\"",
1717
"push": "git push origin master",
18-
"publish:patch": "tsc -p ./tsconfig.scully.json && npm version patch && npm run commit && npm publish && npm run push",
19-
"publish:minor": "tsc -p ./tsconfig.scully.json && npm version minor && npm run commit && npm publish && npm run push",
20-
"publish:major": "tsc -p ./tsconfig.scully.json && npm version major && npm run commit && npm publish && npm run push"
18+
"publish:patch": "tsc -p ./tsconfig.scully.json && npm version patch",
19+
"publish:minor": "tsc -p ./tsconfig.scully.json && npm version minor",
20+
"publish:major": "tsc -p ./tsconfig.scully.json && npm version major"
2121
},
2222
"dependencies": {
2323
"@types/express": "^4.17.0",

scully/utils/log.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import chalk from 'chalk';
22

3-
export const {white, red, yellow, green, orange}: {[x: string]: any} = chalk;
3+
export const orange = chalk.hex('#FFA500');
4+
export const {white, red, yellow, green}: {[x: string]: any} = chalk;
45

56
export const log = (...a) => console.log(white(...a));
67
export const logError = (...a) => console.log(red(...a));

0 commit comments

Comments
 (0)