This repository was archived by the owner on Jun 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed gulp utils issue (closes #130)
- Loading branch information
1 parent
16c1216
commit 6fb5ddb
Showing
4 changed files
with
11 additions
and
6 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,3 +1,5 @@ | ||
* 0.5.4 | ||
* fixed #130 (undefined.emit) | ||
* 0.5.3 | ||
* now less strict with dependencies (#118) | ||
* updated dependencies | ||
|
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
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,7 +1,7 @@ | ||
{ | ||
"name": "modern-web-dev-build", | ||
"description": "Modern Web Development Build.", | ||
"version": "0.5.3", | ||
"version": "0.5.4", | ||
"author": { | ||
"name": "Sebastien Dubois", | ||
"email": "[email protected]", | ||
|
@@ -120,13 +120,13 @@ | |
}, | ||
"scripts": { | ||
"clean": "gulp clean", | ||
"compile": "gulp", | ||
"build": "npm run compile && gulp test-unit", | ||
"test": "gulp prepare-test-unit && gulp test-unit", | ||
"build": "gulp", | ||
"pretest": "gulp prepare-test-unit", | ||
"test": "gulp test-unit", | ||
"update": "npm install --no-optional", | ||
"outdated": "npm outdated", | ||
"help": "gulp help", | ||
"setup": "npm install --no-optional", | ||
"prepublish": "npm run build" | ||
"prepublish": "npm test" | ||
} | ||
} |
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