Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
# Configuration options are documented at:
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
language: node_js
node_js:
- "0.10"
- node
- '0.10'
- '0.12'
- '4.0'
- '4.1'
- '4.2'
- '4.3'
- '5.0'
- '5.1'
- '5.2'
- '5.3'
- '5.4'
- '5.5'
- '5.6'
- iojs
before_install:
before_script:
- npm install -g bower
- cd tests
- cd test
- bower install -f
- cd ..
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Custom importer for node-sass that only allows a file to be imported once. Includes additional import bonuses including importing CSS files directly into Sass, automagic Bower imports, the ability to import an `index` file from within a folder name, and the ability to import JSON and YAML files as Sass maps. Inspired by Eyeglass.",
"main": "index.js",
"scripts": {
"test": "cd tests && ../node_modules/.bin/mocha ./"
"test": "mocha"
},
"repository": {
"type": "git",
Expand Down
3 changes: 3 additions & 0 deletions test/.bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "../bower_components"
}
2 changes: 1 addition & 1 deletion tests/bower.json → test/bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
],
"license": "MIT",
"devDependencies": {
"bootstrap": "~3.3.4",
"bootstrap": "3.3.4",
"sass-toolkit": "~2.9.0",
"breakpoint-sass": "~2.5.0"
}
Expand Down
File renamed without changes.
Loading