Skip to content

Commit

Permalink
upgrade dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Jul 26, 2016
1 parent 0c2228b commit e2e7718
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
23 changes: 13 additions & 10 deletions js/index.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
var pkg = require('aureooms-node-package');
var pkg , fs , data , opt ;

var fs = require('fs');
var data = fs.readFileSync(pkg.config, 'utf8');
var opt = JSON.parse(data);
pkg = require( "aureooms-node-package" ) ;

fs = require( "fs" ) ;
data = fs.readFileSync( pkg.config, "utf8" ) ;
opt = JSON.parse( data ) ;

opt = {
ns : opt.ns,
src : __dirname + '/src/',
exports : module.exports,
base : 0,
name : opt.name ,
src : __dirname + "/src/" ,
exports : module.exports ,
base : 0 ,
debug : opt.debug
};
} ;

pkg.include( opt ) ;

pkg.include(opt);
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"dependencies": {},
"version": "0.0.4",
"devDependencies": {
"aureooms-node-package": "^1.1.3",
"aureooms-js-string": "^0.0.3"
"aureooms-node-package": "^6.0.1",
"aureooms-js-string": "^0.2.0"
},
"repository": {
"url": "https://github.com/aureooms/js-math.git",
Expand Down
4 changes: 2 additions & 2 deletions pkg.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"ns": "math",
"name": "math",
"out": "js/dist/",
"code": {
"main": [
Expand All @@ -14,4 +14,4 @@
},
"debug": false,
"src": "js/src/"
}
}

0 comments on commit e2e7718

Please sign in to comment.