Skip to content

Commit

Permalink
Merge pull request #378 from yamikuronue/replace-babel-with-browserify
Browse files Browse the repository at this point in the history
  • Loading branch information
thebigredgeek authored Dec 21, 2016
2 parents f098331 + f512cf2 commit dc043cf
Show file tree
Hide file tree
Showing 16 changed files with 1,608 additions and 35 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ install:
script:
- make lint
- make test
- make coveralls
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ lint: .FORCE
eslint browser.js debug.js index.js node.js

test: .FORCE
mocha

istanbul cover node_modules/mocha/bin/_mocha -- test/**.js
karma start --single-run

coveralls:
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js

.PHONY: all install clean distclean
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "visionmedia-debug",
"main": "./debug.js",
"main": "./src/debug.js",
"homepage": "https://github.com/visionmedia/debug",
"authors": [
"TJ Holowaychuk <[email protected]>",
Expand Down
6 changes: 3 additions & 3 deletions component.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"log",
"debugger"
],
"main": "browser.js",
"main": "src/browser.js",
"scripts": [
"browser.js",
"debug.js"
"src/browser.js",
"src/debug.js"
],
"dependencies": {
"rauchg/ms.js": "0.7.1"
Expand Down
Loading

0 comments on commit dc043cf

Please sign in to comment.