- Add a main entry point for the jasmine-core npm

- jasmine-core can now self test with the jasmine-npm
- Add node examples files
- Add node_boot.js for node environment
- Move jasmine-core npm packaging to .npmignore
- removing src_dir and src_files from jasmine.json b/c jasmine-npm does not support requiring source files automatically.
This commit is contained in:
Christopher Amavisca and Davis W Frank
2014-03-20 16:12:44 -07:00
parent ed5cd6ba2c
commit e53b487017
18 changed files with 379 additions and 211 deletions

10
spec/support/jasmine.json Normal file
View File

@@ -0,0 +1,10 @@
{
"spec_dir": "spec",
"spec_files": [
"core/**/*.js",
"console/**/*.js"
],
"helpers": [
"helpers/nodeDefineJasmineUnderTest.js"
]
}