Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
first stab at some restructure of the code to support unit testing
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Mar 23, 2016
1 parent 834abb7 commit 1a3d7b6
Show file tree
Hide file tree
Showing 37 changed files with 297 additions and 26,210 deletions.
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": ["es2015"],
"plugins": ["babel-plugin-add-module-exports"]
}
48 changes: 48 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Mocha",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}\\node_modules\\mocha\\bin\\_mocha",
"stopOnEntry": false,
"args": ["--compilers", "js:babel-register", "test/*.spec.js"],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null
},
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}\\src\\index.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "localhost",
"restart": false,
"sourceMaps": false,
"outDir": null,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
}
]
}
19 changes: 0 additions & 19 deletions bower.json

This file was deleted.

Loading

0 comments on commit 1a3d7b6

Please sign in to comment.