File tree 9 files changed +752
-951
lines changed
9 files changed +752
-951
lines changed Original file line number Diff line number Diff line change 8
8
9
9
# dependencies
10
10
/bower_components /
11
+ /node_modules /
11
12
12
13
# misc
13
14
/coverage /
15
+ ! . *
14
16
15
17
# ember-try
16
18
/.node_modules.ember-try /
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ module.exports = {
20
20
// node files
21
21
{
22
22
files : [
23
+ '.eslintrc.js' ,
23
24
'.template-lintrc.js' ,
24
25
'ember-cli-build.js' ,
25
26
'index.js' ,
Original file line number Diff line number Diff line change 9
9
/node_modules /
10
10
11
11
# misc
12
+ /.env *
12
13
/.sass-cache
13
14
/connect.lock
14
15
/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
15
- /.watchmanconfig
16
+ /.template-lintrc.js
16
17
/.travis.yml
18
+ /.watchmanconfig
17
19
/bower.json
18
20
/config /ember-try.js
21
+ /CONTRIBUTING.md
19
22
/ember-cli-build.js
20
23
/testem.js
21
24
/tests /
Original file line number Diff line number Diff line change 19
19
# See https://git.io/vdao3 for details.
20
20
- JOBS=1
21
21
22
+ branches :
23
+ only :
24
+ - master
25
+ # npm version tags
26
+ - /^v\d+\.\d+\.\d+/
27
+
22
28
jobs :
23
29
fail_fast : true
24
30
allow_failures :
43
49
# we recommend new addons test the current and previous LTS
44
50
# as well as latest stable release (bonus points to beta/canary)
45
51
- stage : " Additional Tests"
46
- env : EMBER_TRY_SCENARIO=ember-lts-2.16
47
- - env : EMBER_TRY_SCENARIO=ember-lts-2.18
52
+ env : EMBER_TRY_SCENARIO=ember-lts-2.18
53
+ - env : EMBER_TRY_SCENARIO=ember-lts-3.4
48
54
- env : EMBER_TRY_SCENARIO=ember-release
49
55
- env : EMBER_TRY_SCENARIO=ember-beta
50
56
- 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-cli-bootstrap-datetimepicker `
7
+ * ` yarn install `
8
+
9
+ ## Linting
10
+
11
+ * ` yarn lint:hbs `
12
+ * ` yarn lint:js `
13
+ * ` yarn 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 @@ -12,26 +12,22 @@ module.exports = function() {
12
12
useYarn : true ,
13
13
scenarios : [
14
14
{
15
- name : 'ember-lts-2.16 ' ,
15
+ name : 'ember-lts-2.18 ' ,
16
16
env : {
17
- EMBER_OPTIONAL_FEATURES : JSON . stringify ( { 'jquery-integration' : true } ) ,
17
+ EMBER_OPTIONAL_FEATURES : JSON . stringify ( { 'jquery-integration' : true } )
18
18
} ,
19
19
npm : {
20
20
devDependencies : {
21
21
'@ember/jquery' : '^0.5.1' ,
22
- 'ember-source' : '~2.16 .0'
22
+ 'ember-source' : '~2.18 .0'
23
23
}
24
24
}
25
25
} ,
26
26
{
27
- name : 'ember-lts-2.18' ,
28
- env : {
29
- EMBER_OPTIONAL_FEATURES : JSON . stringify ( { 'jquery-integration' : true } ) ,
30
- } ,
27
+ name : 'ember-lts-3.4' ,
31
28
npm : {
32
29
devDependencies : {
33
- '@ember/jquery' : '^0.5.1' ,
34
- 'ember-source' : '~2.18.0'
30
+ 'ember-source' : '~3.4.0'
35
31
}
36
32
}
37
33
} ,
@@ -59,6 +55,10 @@ module.exports = function() {
59
55
}
60
56
}
61
57
} ,
58
+ // The default `.travis.yml` runs this scenario via `yarn test`,
59
+ // not via `ember try`. It's still included here so that running
60
+ // `ember try:each` manually or from a customized CI config will run it
61
+ // along with all the other scenarios.
62
62
{
63
63
name : 'ember-default' ,
64
64
npm : {
Original file line number Diff line number Diff line change 61
61
"eslint-plugin-ember" : " ^6.2.0" ,
62
62
"eslint-plugin-node" : " ^8.0.1" ,
63
63
"loader.js" : " ^4.7.0" ,
64
- "moment" : " ^2.24.2 " ,
64
+ "moment" : " ^2.24.0 " ,
65
65
"moment-timezone" : " ^0.5.23" ,
66
66
"qunit-dom" : " ^0.8.4"
67
67
},
You can’t perform that action at this time.
0 commit comments