Skip to content

Commit cca2590

Browse files
Use ember-try
1 parent 2d4139b commit cca2590

File tree

4 files changed

+31
-287
lines changed

4 files changed

+31
-287
lines changed

.travis.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,28 @@ branches:
2828

2929
jobs:
3030
fail_fast: true
31+
allow_failures:
32+
- env: EMBER_TRY_SCENARIO=ember-canary
3133

3234
include:
3335
# runs linting and tests with current locked deps
36+
3437
- stage: "Tests"
3538
name: "Tests"
3639
script:
3740
- npm run lint:hbs
3841
- npm run lint:js
39-
- npm run test:all
42+
- npm test
43+
44+
# we recommend new addons test the current and previous LTS
45+
# as well as latest stable release (bonus points to beta/canary)
46+
- stage: "Additional Tests"
47+
env: EMBER_TRY_SCENARIO=ember-lts-3.4
48+
- env: EMBER_TRY_SCENARIO=ember-lts-3.8
49+
- env: EMBER_TRY_SCENARIO=ember-release
50+
- env: EMBER_TRY_SCENARIO=ember-beta
51+
- env: EMBER_TRY_SCENARIO=ember-canary
52+
- env: EMBER_TRY_SCENARIO=ember-default-with-jquery
53+
54+
script:
55+
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Installation
44

55
* `git clone <repository-url>`
6-
* `cd my-addon`
6+
* `cd ember-cli-chart`
77
* `npm install`
88

99
## Linting

package-lock.json

-271
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+13-14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
"name": "ember-cli-chart",
33
"version": "3.5.0",
44
"description": "Ember component for ChartJS",
5+
"keywords": [
6+
"ember-addon"
7+
],
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/aomran/ember-cli-chart.git"
11+
},
12+
"license": "MIT",
13+
"author": "Ahmed Omran",
14+
"directories": {
15+
"doc": "doc",
16+
"test": "tests"
17+
},
518
"scripts": {
619
"build": "ember build",
720
"lint:hbs": "ember-template-lint .",
@@ -17,19 +30,6 @@
1730
"ember-cli-node-assets": "^0.2.2",
1831
"fastboot-transform": "^0.1.2"
1932
},
20-
"keywords": [
21-
"ember-addon"
22-
],
23-
"repository": {
24-
"type": "git",
25-
"url": "https://github.com/aomran/ember-cli-chart.git"
26-
},
27-
"license": "MIT",
28-
"author": "Ahmed Omran",
29-
"directories": {
30-
"doc": "doc",
31-
"test": "tests"
32-
},
3333
"bugs": {
3434
"url": "https://github.com/aomran/ember-cli-chart/issues"
3535
},
@@ -55,7 +55,6 @@
5555
"ember-source": "~3.13.0",
5656
"ember-source-channel-url": "^2.0.1",
5757
"ember-try": "^1.2.1",
58-
"ember-welcome-page": "^3.0.0",
5958
"eslint-plugin-ember": "^7.1.0",
6059
"eslint-plugin-node": "^10.0.0",
6160
"loader.js": "^4.7.0",

0 commit comments

Comments
 (0)