Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve #30 #31

Merged
merged 1 commit into from
Oct 22, 2017
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
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
language: node_js
node_js:
- "4"
12 changes: 8 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,15 @@ bundle: ## bundles source
deploy: ## create deployment bundle
rm -rf public && $(WEBPACK) --progress --colors -p --deploy && $(GHPAGES) -d public

test-bundle: ## bundles test source
$(WEBPACK) --config webpack.config.test.babel.js --progress --colors
# NOTE:: Introduce when tests are created
# test-bundle: ## bundles test source
# $(WEBPACK) --config webpack.config.test.babel.js --progress --colors

test: test-bundle ## runs tests
$(MOCHA) test/test.js
# test: test-bundle ## runs tests
# $(MOCHA) test/test.js

test: ## runs tests, linting
make lint

develop: ## develop source
$(SERVER) --progress --colors -d --hot --inline
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Build Status](https://travis-ci.org/jh3y/ep.svg?branch=master)](https://travis-ci.org/jh3y/ep)

![alt tag](https://github.com/jh3y/pics/blob/master/ep/ep.png)
## enhance your HTML5 `<progress>` bars with minimal effort!

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@jh3y/ep",
"version": "2.0.5",
"version": "2.0.6",
"description": "enhance your progress bars with minimal effort!",
"main": "dist/ep.js",
"scripts": {
"prepublish": "make dist",
"test": "echo \"Error: no test specified\" && exit 1"
"test": "make test"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/script/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* https://jh3y.github.io/ep
* @license MIT
* @author jh3y
* @version 2.0.5
* @version 2.0.6
* (c) 2017
*/
(function() {
Expand Down
2 changes: 1 addition & 1 deletion src/styles/ep.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* https://jh3y.github.io/ep
* @license MIT
* @author jh3y
* @version 2.0.5
* @version 2.0.6
* (c) 2017
*/
@import 'core';
Expand Down