Skip to content

Commit

Permalink
0.16.4
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Sep 18, 2015
1 parent 10c0b0f commit 52de28d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ exports.load = function(prompts) {
return config.loader.read(prompts);
})
.then(function() {
return readJSON(path.resolve(config.pjson.packages, '.dependencies.json'));
return readJSON(path.resolve(config.pjson.packages, '.dependencies.json'))
})
.then(function(depsJSON) {
config.deps = setSerializedDeps(depsJSON);
Expand Down Expand Up @@ -175,6 +175,9 @@ exports.save = function() {
.then(function() {
return config.pjson.write();
})
.then(function() {
return asp(mkdirp(config.pjson.packages));
})
.then(function() {
return asp(fs.writeFile)(path.resolve(config.pjson.packages, '.dependencies.json'), JSON.stringify(getSerializedDeps(config.deps), null, 2));
})
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jspm",
"description": "Registry and format agnostic JavaScript package manager",
"version": "0.16.3",
"version": "0.16.4",
"main": "./api.js",
"author": "",
"dependencies": {
Expand Down

1 comment on commit 52de28d

@guybedford
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@douglasduteil thanks you were exactly right, luckily non-critical. Added 21380a1.

Please sign in to comment.