Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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