We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 809b593 commit 7c04e50Copy full SHA for 7c04e50
2 files changed
appveyor.yml
@@ -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
@@ -23,6 +23,9 @@
"url": "git://github.com/shelljs/plugin-open.git"
},
"license": "MIT",
26
+ "files": [
27
+ "index.js"
28
+ ],
29
"devDependencies": {
30
"eslint": "^3.1.1",
31
"eslint-config-airbnb-base": "^4.0.2",
0 commit comments