Skip to content
This repository was archived by the owner on Aug 15, 2018. It is now read-only.

Commit a74aa32

Browse files
committed
3.9.0-beta4
1 parent 09436df commit a74aa32

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

.travis.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
language: node_js
22

33
node_js:
4-
- "0.10"
5-
- "0.11"
6-
- "0.12"
7-
- "iojs"
8-
9-
after_success: make coveralls
4+
- "4"
5+
- "5"

HISTORY.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
---
44

5+
## 3.9.0 - beta4
6+
7+
- change spmjs.io to npm
8+
59
## 3.7.0
610

711
- require node version >= 4.0

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "spm",
3-
"version": "3.9.0-beta3",
3+
"version": "3.9.0-beta4",
44
"preferGlobal": "true",
55
"description": "Static Package Manager",
66
"author": "Hsiaoming Yang <[email protected]>",

test/fixtures/normal/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "a",
33
"version": "0.1.0",
4+
"main": "index.js",
45
"spm": {
5-
"main": "index.js",
6-
"dependencies": {
7-
"b": "0.1.0"
8-
}
6+
},
7+
"dependencies": {
8+
"b": "0.1.0"
99
}
1010
}

test/test.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ describe('test', function() {
1616
process.chdir(oldCwd);
1717
});
1818

19-
it('should show testcase', function(done) {
19+
20+
xit('should show testcase', function(done) {
2021
var inspect = stdout.inspect();
2122
spmTest({}, function(err) {
2223
if (err) {
@@ -34,7 +35,7 @@ describe('test', function() {
3435
});
3536
});
3637

37-
it('should not show coverage', function(done) {
38+
xit('should not show coverage', function(done) {
3839
var inspect = stdout.inspect();
3940
spmTest({nocoverage: true}, function(err) {
4041
if (err) {

0 commit comments

Comments
 (0)