File tree 7 files changed +11998
-5090
lines changed
7 files changed +11998
-5090
lines changed Original file line number Diff line number Diff line change 9
9
/node_modules /
10
10
11
11
# misc
12
+ /.env *
13
+ /.pnp *
12
14
/.sass-cache
13
15
/connect.lock
14
16
/coverage /
Original file line number Diff line number Diff line change 9
9
/.bowerrc
10
10
/.editorconfig
11
11
/.ember-cli
12
+ /.env *
12
13
/.eslintignore
13
14
/.eslintrc.js
14
15
/.gitignore
17
18
/.watchmanconfig
18
19
/bower.json
19
20
/config /ember-try.js
21
+ /CONTRIBUTING.md
20
22
/ember-cli-build.js
21
23
/testem.js
22
24
/tests /
Original file line number Diff line number Diff line change 20
20
# See https://git.io/vdao3 for details.
21
21
- JOBS=1
22
22
23
+ branches :
24
+ only :
25
+ - master
26
+ # npm version tags
27
+ - /^v\d+\.\d+\.\d+/
28
+
23
29
jobs :
24
30
fail_fast : true
25
31
allow_failures :
41
47
env : EMBER_TRY_SCENARIO=ember-lts-2.12
42
48
- env : EMBER_TRY_SCENARIO=ember-lts-2.16
43
49
- env : EMBER_TRY_SCENARIO=ember-lts-2.18
50
+ - env : EMBER_TRY_SCENARIO=ember-lts-3.4
44
51
- env : EMBER_TRY_SCENARIO=ember-release
45
52
- env : EMBER_TRY_SCENARIO=ember-beta
46
53
- env : EMBER_TRY_SCENARIO=ember-canary
Original file line number Diff line number Diff line change
1
+ # How To Contribute
2
+
3
+ ## Installation
4
+
5
+ * ` git clone <repository-url> `
6
+ * ` cd ember-bootstrap-modals-manager `
7
+ * ` npm install `
8
+
9
+ ## Linting
10
+
11
+ * ` npm run lint:hbs `
12
+ * ` npm run lint:js `
13
+ * ` npm run lint:js -- --fix `
14
+
15
+ ## Running tests
16
+
17
+ * ` ember test ` – Runs the test suite on the current Ember version
18
+ * ` ember test --server ` – Runs the test suite in "watch mode"
19
+ * ` ember try:each ` – Runs the test suite against multiple Ember versions
20
+
21
+ ## Running the dummy application
22
+
23
+ * ` ember serve `
24
+ * Visit the dummy application at [ http://localhost:4200 ] ( http://localhost:4200 ) .
25
+
26
+ For more information on using ember-cli, visit [ https://ember-cli.com/ ] ( https://ember-cli.com/ ) .
Original file line number Diff line number Diff line change @@ -46,6 +46,14 @@ module.exports = function() {
46
46
}
47
47
}
48
48
} ,
49
+ {
50
+ name : 'ember-lts-3.4' ,
51
+ npm : {
52
+ devDependencies : {
53
+ 'ember-source' : '~3.4.0'
54
+ }
55
+ }
56
+ } ,
49
57
{
50
58
name : 'ember-release' ,
51
59
npm : {
@@ -70,6 +78,10 @@ module.exports = function() {
70
78
}
71
79
}
72
80
} ,
81
+ // The default `.travis.yml` runs this scenario via `npm test`,
82
+ // not via `ember try`. It's still included here so that running
83
+ // `ember try:each` manually or from a customized CI config will run it
84
+ // along with all the other scenarios.
73
85
{
74
86
name : 'ember-default' ,
75
87
npm : {
You can’t perform that action at this time.
0 commit comments