Skip to content

Commit 8341efc

Browse files
authored
Merge pull request #3 from peopledoc/chore/ci-lock-codeowners
Update CI, yarn.lock and add a CODEOWNERS file
2 parents ef7fa7a + 1232e7f commit 8341efc

File tree

5 files changed

+2654
-7869
lines changed

5 files changed

+2654
-7869
lines changed

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @peopledoc/tribe-js

.travis.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,14 @@ language: node_js
33
node_js:
44
- "4"
55
- "6"
6+
- "8"
7+
- "10"
68

79
sudo: false
810

911
cache:
1012
yarn: true
1113

12-
before_install:
13-
- curl -o- -L https://yarnpkg.com/install.sh | bash
14-
- export PATH=$HOME/.yarn/bin:$PATH
15-
1614
install:
1715
- yarn install --no-lockfile
1816

README.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
> An Ember CLI Deploy plugin to use a JSON index rather than an HTML one as provided by [`ember-cli-deploy-s3-index`](https://github.com/ember-cli-deploy/ember-cli-deploy-s3-index).
44
5+
[![Build Status](https://travis-ci.org/peopledoc/ember-cli-deploy-index-json.svg?branch=master)](https://travis-ci.org/peopledoc/ember-cli-deploy-index-json)
6+
57
This JSON index file is meant to be consumed by some application embedding yours.
68

79
```
@@ -49,7 +51,7 @@ s3: {},
4951
}
5052
```
5153

52-
*In depth:* The idea is that `revision-data`, `s3-index` and `index-json` have the same `filePattern` value. `index-json` is not present in this example because we're using its default `filePattern` value.
54+
_In depth:_ The idea is that `revision-data`, `s3-index` and `index-json` have the same `filePattern` value. `index-json` is not present in this example because we're using its default `filePattern` value.
5355

5456
## Usage
5557

@@ -79,39 +81,39 @@ For detailed information on how configuration of plugins works, please refer to
7981

8082
Files matching this pattern will be included in the index.
8183

82-
*Default:* `'**/*.{js,css,png,gif,ico,jpg,map,xml,txt,svg,swf,eot,ttf,woff,woff2}'`
84+
_Default:_ `'**/*.{js,css,png,gif,ico,jpg,map,xml,txt,svg,swf,eot,ttf,woff,woff2}'`
8385

8486
### fileIgnorePattern
8587

86-
Files matching this pattern will *not* be included in the index even if they match filePattern.
88+
Files matching this pattern will _not_ be included in the index even if they match filePattern.
8789

88-
*Default:* `null`
90+
_Default:_ `null`
8991

9092
### indexPath
9193

9294
The JSON index file name. If changed, you should adapt `revision-data` and `s3-index` plugins configs accordingly.
9395

94-
*Default:* `'index.json'`
96+
_Default:_ `'index.json'`
9597

9698
### distDir
9799

98100
Directory where assets have been written to
99101

100-
*Default:* the `distDir` property of the deployment context
102+
_Default:_ the `distDir` property of the deployment context
101103

102104
### distFiles
103105

104106
The Array of built assets.
105107

106-
*Default:* the `distFiles` property of the deployment context
108+
_Default:_ the `distFiles` property of the deployment context
107109

108110
## Prerequisites
109111

110112
No properties are expected to be present on the deployment context object.
111113

112114
## Tests
113115

114-
* yarn test
116+
- yarn test
115117

116118
## Why `ember test` doesn't work
117119

0 commit comments

Comments
 (0)