Skip to content

Commit 7c04e50

Browse files
committed
chore: add appveyor and files package attribute
1 parent 809b593 commit 7c04e50

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

appveyor.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
environment:
2+
matrix:
3+
- nodejs_version: '6'
4+
- nodejs_version: '5'
5+
- nodejs_version: '4'
6+
7+
version: '{build}'
8+
9+
# Install scripts. (runs after repo cloning)
10+
install:
11+
- ps: Install-Product node $env:nodejs_version
12+
- npm -g install npm@latest
13+
- set PATH=%APPDATA%\npm;%PATH%
14+
- node --version
15+
- npm --version
16+
- npm install
17+
18+
matrix:
19+
fast_finish: true
20+
21+
# No need for MSBuild on this project
22+
build: off
23+
24+
test_script:
25+
- npm test

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
"url": "git://github.com/shelljs/plugin-open.git"
2424
},
2525
"license": "MIT",
26+
"files": [
27+
"index.js"
28+
],
2629
"devDependencies": {
2730
"eslint": "^3.1.1",
2831
"eslint-config-airbnb-base": "^4.0.2",

0 commit comments

Comments
 (0)