Skip to content

Commit 3e76860

Browse files
committed
v2.2.0
1 parent 44f41d7 commit 3e76860

7 files changed

+11998
-5090
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
/node_modules/
1010

1111
# misc
12+
/.env*
13+
/.pnp*
1214
/.sass-cache
1315
/connect.lock
1416
/coverage/

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
/.bowerrc
1010
/.editorconfig
1111
/.ember-cli
12+
/.env*
1213
/.eslintignore
1314
/.eslintrc.js
1415
/.gitignore
@@ -17,6 +18,7 @@
1718
/.watchmanconfig
1819
/bower.json
1920
/config/ember-try.js
21+
/CONTRIBUTING.md
2022
/ember-cli-build.js
2123
/testem.js
2224
/tests/

.travis.yml

+7
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ env:
2020
# See https://git.io/vdao3 for details.
2121
- JOBS=1
2222

23+
branches:
24+
only:
25+
- master
26+
# npm version tags
27+
- /^v\d+\.\d+\.\d+/
28+
2329
jobs:
2430
fail_fast: true
2531
allow_failures:
@@ -41,6 +47,7 @@ jobs:
4147
env: EMBER_TRY_SCENARIO=ember-lts-2.12
4248
- env: EMBER_TRY_SCENARIO=ember-lts-2.16
4349
- env: EMBER_TRY_SCENARIO=ember-lts-2.18
50+
- env: EMBER_TRY_SCENARIO=ember-lts-3.4
4451
- env: EMBER_TRY_SCENARIO=ember-release
4552
- env: EMBER_TRY_SCENARIO=ember-beta
4653
- env: EMBER_TRY_SCENARIO=ember-canary

CONTRIBUTING.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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/).

config/ember-try.js

+12
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@ module.exports = function() {
4646
}
4747
}
4848
},
49+
{
50+
name: 'ember-lts-3.4',
51+
npm: {
52+
devDependencies: {
53+
'ember-source': '~3.4.0'
54+
}
55+
}
56+
},
4957
{
5058
name: 'ember-release',
5159
npm: {
@@ -70,6 +78,10 @@ module.exports = function() {
7078
}
7179
}
7280
},
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.
7385
{
7486
name: 'ember-default',
7587
npm: {

0 commit comments

Comments
 (0)