-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jon Q
committed
Dec 1, 2019
1 parent
0d03cbf
commit b046890
Showing
3 changed files
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
language: node_js | ||
node_js: | ||
- 'lts/*' | ||
- "lts/*" | ||
|
||
cache: | ||
directories: | ||
- node_modules | ||
directories: | ||
- node_modules | ||
|
||
install: | ||
- npm install | ||
- npm install | ||
|
||
script: | ||
- npm run validate | ||
- npm run validate | ||
|
||
branches: | ||
only: | ||
- master | ||
only: | ||
- master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2019 | ||
Copyright (c) 2019 Jon Quach <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
"build": "npm run build:cjs && npm run build:es -- --no-clean", | ||
"lint": "zero lint", | ||
"dev": "zero test", | ||
"test": "zero test --no-watch", | ||
"test": "zero test --coverage", | ||
"test:coverage": "zero test --coverage", | ||
"format": "zero format", | ||
"validate": "zero validate", | ||
|
@@ -26,6 +26,16 @@ | |
"README.md", | ||
"LICENSE" | ||
], | ||
"author": "Jon Quach <[email protected]> (https://jonquach.com)", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/itsjonq/zero.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/itsjonq/zero/issues" | ||
}, | ||
"homepage": "https://github.com/itsjonq/zero#readme", | ||
"keywords": [], | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@itsjonq/zero": "<%= zeroVersion %>" | ||
|