Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ktaeyln committed Jun 3, 2016
1 parent fbd90ab commit 45be51a
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 69 deletions.
1 change: 1 addition & 0 deletions .gitignore
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
npm-debug.log
*.bak
*~
/nbproject/private/
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
- "4.2"
- "5.1"
- "5.0"
- "iojs"
- "iojs-v1.0.4"
script: "npm run-script test-travis"
after_script: "npm install coveralls@2.10.0 && cat ./coverage/lcov.info | coveralls"
3 changes: 3 additions & 0 deletions nbproject/project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
files.encoding=UTF-8
site.root.folder=
source.folder=
9 changes: 9 additions & 0 deletions nbproject/project.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://www.netbeans.org/ns/project/1">
<type>org.netbeans.modules.web.clientproject</type>
<configuration>
<data xmlns="http://www.netbeans.org/ns/clientside-project/1">
<name>typeinclude</name>
</data>
</configuration>
</project>
117 changes: 58 additions & 59 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,60 @@
{
"name": "typeinclude",
"author": "NexusTools",
"homepage": "https://www.nexustools.net/projects#typeinclude",
"version": "0.6.3",
"licenses": [
{
"type": "Apache License 2.0",
"url": "https://github.com/NexusTools/node-typeinclude/blob/master/LICENSE.md"
}
],
"description": "node-typeinclude makes it easy to include typescript files into your nodejs project at runtime, without the need to recompile every time you change something. And provides a few extensions to the TypeScript language via a pre-processor.",
"keywords": [
"typescript",
"NexusTools",
"integration",
"nosejs",
"compiler",
"language",
"javascript",
"macros",
"resolve",
"loader",
"class"
],
"bugs": {
"url" : "https://github.com/NexusTools/node-typeinclude/issues"
},
"repository": {
"type" : "git",
"url" : "https://github.com/NexusTools/node-typeinclude.git"
},
"main" : "index.js",
"scripts": {
"test": "mocha --bail --require ./test/support/env --reporter spec --timeout 40000 --globals __typeinclude__ --check-leaks test/",
"test-coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --timeout 40000 --globals __typeinclude__ --check-leaks --require test/support/env --bail --reporter spec test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --timeout 40000 --globals __typeinclude__ --check-leaks --require test/support/env --reporter spec test/"
},
"bin" : {
"tsc+" : "./bin/tsc+",
"tscac" : "./bin/tscac",
"nodets" : "./bin/nodets"
},
"engines" : {
"node": ">=0.10.16",
"npm": ">=1.3.8"
},
"dependencies": {
"cli-color": "~1.0.0",
"nulllogger": "~0.2.4",
"node-paths": "~0.1.9",
"lodash": "~3.8.0",
"mkdirp": "~0.5.0",
"sleep": "~2.0.0"
},
"devDependencies": {
"typescript" : "~1.4.1",
"istanbul": "~0.3.13",
"mocha": "~2.2.4"
}
"name": "typeinclude",
"author": "NexusTools",
"homepage": "https://www.nexustools.net/projects#typeinclude",
"version": "0.6.4",
"licenses": [
{
"type": "Apache License 2.0",
"url": "https://github.com/NexusTools/node-typeinclude/blob/master/LICENSE.md"
}
],
"description": "node-typeinclude makes it easy to include typescript files into your nodejs project at runtime, without the need to recompile every time you change something. And provides a few extensions to the TypeScript language via a pre-processor.",
"keywords": [
"typescript",
"NexusTools",
"integration",
"nosejs",
"compiler",
"language",
"javascript",
"macros",
"resolve",
"loader",
"class"
],
"bugs": {
"url": "https://github.com/NexusTools/node-typeinclude/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/NexusTools/node-typeinclude.git"
},
"main": "index.js",
"scripts": {
"test": "mocha --bail --require ./test/support/env --reporter spec --timeout 40000 --globals __typeinclude__ --check-leaks test/",
"test-coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --timeout 40000 --globals __typeinclude__ --check-leaks --require test/support/env --bail --reporter spec test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --timeout 40000 --globals __typeinclude__ --check-leaks --require test/support/env --reporter spec test/"
},
"bin": {
"tsc+": "./bin/tsc+",
"tscac": "./bin/tscac",
"nodets": "./bin/nodets"
},
"engines": {
"node": ">=0.10.16",
"npm": ">=1.3.8"
},
"dependencies": {
"nulllogger": "^0.2.4",
"node-paths": "^0.2.0",
"lodash": "^4.13.1",
"mkdirp": "^0.5.1",
"sleep": "^3.0.1"
},
"devDependencies": {
"typescript": "^1.8.10",
"istanbul": "^0.4.3",
"mocha": "^2.5.3"
}
}
9 changes: 0 additions & 9 deletions test/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,15 +143,6 @@ describe('coverage', function() {
throw e;
}
});
it('compile error', function(){
try {
typeinclude("error");
throw new Error("Didn't fail");
} catch(e) {
if(!/Cannot compile /.test(e.message))
throw e;
}
});
it('cannot resolve error', function(){
try {
typeinclude("fake");
Expand Down

0 comments on commit 45be51a

Please sign in to comment.