Skip to content

Commit f42b962

Browse files
committed
refactor: Moved source files to /src. Moved test files to client and server side tests. Added karma for front-end testing.
1 parent 2a146b6 commit f42b962

14 files changed

+501
-200
lines changed

Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ lint: .FORCE
4343
eslint debug.js
4444

4545
test: .FORCE
46-
mocha
47-
46+
mocha test/server/**.js
47+
karma start --single-run
48+
4849
.PHONY: all install clean distclean

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "visionmedia-debug",
3-
"main": "./debug.js",
3+
"main": "./src/debug.js",
44
"homepage": "https://github.com/visionmedia/debug",
55
"authors": [
66
"TJ Holowaychuk <[email protected]>",

component.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"log",
99
"debugger"
1010
],
11-
"main": "browser.js",
11+
"main": "src/browser.js",
1212
"scripts": [
13-
"browser.js",
14-
"debug.js"
13+
"src/browser.js",
14+
"src/debug.js"
1515
],
1616
"dependencies": {
1717
"rauchg/ms.js": "0.7.1"

0 commit comments

Comments
 (0)