-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop bower and use bourbon npm module instead.
- Loading branch information
Showing
15 changed files
with
188 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,37 @@ | ||
--- | ||
language: node_js | ||
node_js: | ||
- "0.12" | ||
- "4" | ||
|
||
sudo: false | ||
|
||
cache: | ||
directories: | ||
- node_modules | ||
- $HOME/.npm | ||
|
||
env: | ||
- EMBER_TRY_SCENARIO=default | ||
# we recommend testing LTS's and latest stable release (bonus points to beta/canary) | ||
- EMBER_TRY_SCENARIO=ember-lts-2.4 | ||
- EMBER_TRY_SCENARIO=ember-lts-2.8 | ||
- EMBER_TRY_SCENARIO=ember-release | ||
- EMBER_TRY_SCENARIO=ember-beta | ||
- EMBER_TRY_SCENARIO=ember-canary | ||
- EMBER_TRY_SCENARIO=ember-default | ||
|
||
matrix: | ||
fast_finish: true | ||
allow_failures: | ||
- env: EMBER_TRY_SCENARIO=ember-canary | ||
|
||
before_install: | ||
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH | ||
- "npm config set spin false" | ||
- "npm install -g npm@^2" | ||
- npm config set spin false | ||
- npm install -g phantomjs-prebuilt | ||
- phantomjs --version | ||
|
||
install: | ||
- npm install -g bower | ||
- npm install | ||
- bower install | ||
|
||
script: | ||
- ember try $EMBER_TRY_SCENARIO test | ||
# Usually, it's ok to finish the test scenario without reverting | ||
# to the addon's original dependency state, skipping "cleanup". | ||
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,5 @@ | ||
{ | ||
"name": "ember-cli-bourbon", | ||
"dependencies": { | ||
"bourbon": "~4.2.6", | ||
"ember": "1.13.11", | ||
"ember-cli-shims": "0.0.6", | ||
"ember-cli-test-loader": "0.2.1", | ||
"ember-data": "1.13.15", | ||
"ember-load-initializers": "0.1.7", | ||
"ember-qunit": "0.4.16", | ||
"ember-qunit-notifications": "0.1.0", | ||
"ember-resolver": "~0.1.20", | ||
"jquery": "^1.11.3", | ||
"loader.js": "ember-cli/loader.js#3.4.0", | ||
"qunit": "~1.20.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
rules: | ||
no-ids: 0 | ||
property-sort-order: 0 | ||
mixins-before-declarations: 0 | ||
leading-zero: 0 | ||
empty-line-between-blocks: 0 | ||
space-after-comma: 0 | ||
no-color-literals: 0 | ||
no-color-keywords: 0 | ||
no-mergeable-selectors: 0 | ||
force-element-nesting: 0 | ||
nesting-depth: 0 | ||
force-pseudo-nesting: 0 | ||
single-line-per-selector: 0 | ||
no-vendor-prefixes: 0 | ||
indentation: 0 | ||
variable-name-format: 0 | ||
clean-import-paths: 0 | ||
one-declaration-per-line: 0 | ||
class-name-format: 0 | ||
no-qualifying-elements: 0 | ||
force-attribute-nesting: 0 | ||
no-important: 0 | ||
placeholder-in-extend: 0 | ||
extends-before-declarations: 0 | ||
# TODO: Encapsulate -webkit-overflow-scrolling in mixin to re-enable no-misspelled-properties rule | ||
no-misspelled-properties: 0 | ||
# TODO: Encapsulate crazy cursor stuff in mixin to re-enable no-duplicate-properties rule | ||
no-duplicate-properties: 0 | ||
|
||
# Need to glob file paths with ** in order to match differing relative paths: | ||
# ember-cli-sass-lint app tree -- webfonts/proxima_nova_font.scss | ||
# vs. | ||
# project root for editor plugins -- app/styles/webfonts/proxima_nova_font.scss | ||
files: | ||
ignore: | ||
- '**/base.scss' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import Resolver from 'ember-resolver'; | ||
|
||
export default Resolver; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.