Skip to content

Commit e7de75f

Browse files
Merge pull request #77 from alexdiliberto/patch-1
Update ember-themed-syntax, fix computed decorator, remove bower, cli update, ci headless chrome
2 parents 3d01335 + e8549f4 commit e7de75f

26 files changed

+132
-150
lines changed

.bowerrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

.eslintrc.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ module.exports = {
66
sourceType: 'module'
77
},
88
extends: [
9-
'eslint:recommended',
10-
'plugin:ember-suave/recommended'
9+
'eslint:recommended'
1110
],
1211
env: {
1312
browser: true,

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ node_js:
66
- "4"
77

88
sudo: false
9+
dist: trusty
10+
11+
addons:
12+
chrome: stable
913

1014
cache:
1115
yarn: true
@@ -28,12 +32,8 @@ matrix:
2832
before_install:
2933
- curl -o- -L https://yarnpkg.com/install.sh | bash
3034
- export PATH=$HOME/.yarn/bin:$PATH
31-
- yarn global add bower phantomjs-prebuilt
32-
- bower --version
33-
- phantomjs --version
3435

3536
install:
36-
- bower install # TODO: Remove addon's dependency on `bower`
3737
- yarn install --no-lockfile --non-interactive
3838

3939
script:

addon/components/bulma-button.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Ember from 'ember';
22
import layout from '../templates/components/bulma-button';
3-
import { alias, bool } from 'ember-computed-decorators';
3+
import { alias, bool } from 'ember-decorators/object/computed';
44
import { _colorBindings } from '../constants';
55

66
const {

addon/components/bulma-hero-content.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Ember from 'ember';
22
import layout from '../templates/components/bulma-hero-content';
3-
import { alias } from 'ember-computed-decorators';
3+
import { alias } from 'ember-decorators/object/computed';
44
import { _responsiveHelpers } from '../constants';
55

66
const {

addon/components/bulma-hero.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Ember from 'ember';
22
import layout from '../templates/components/bulma-hero';
33
import { _colorBindings, _responsiveHelpers } from '../constants';
4-
import { alias } from 'ember-computed-decorators';
4+
import { alias } from 'ember-decorators/object/computed';
55

66
const {
77
Component

addon/components/bulma-message.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Ember from 'ember';
22
import layout from '../templates/components/bulma-message';
3-
import { alias } from 'ember-computed-decorators';
3+
import { alias } from 'ember-decorators/object/computed';
44
import { _colorBindings, _responsiveHelpers } from '../constants';
55

66
const {

addon/components/bulma-notification.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Ember from 'ember';
22
import layout from '../templates/components/bulma-notification';
3-
import computed from 'ember-computed-decorators';
3+
import { computed } from 'ember-decorators/object';
44
import { _colorBindings, _responsiveHelpers } from '../constants';
55

66
const {

addon/components/bulma-select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Ember from 'ember';
22
import layout from '../templates/components/bulma-select';
3-
import computed from 'ember-computed-decorators';
3+
import { computed } from 'ember-decorators/object';
44
import { deprecations } from '../utils';
55

66
const {

addon/components/bulma-tabs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Ember from 'ember';
22
import layout from '../templates/components/bulma-tabs';
3-
import computed from 'ember-computed-decorators';
3+
import { computed } from 'ember-decorators/object';
44
import { _responsiveHelpers } from '../constants';
55

66
const {

0 commit comments

Comments
 (0)