Skip to content

Commit f4c0405

Browse files
authored
Merge pull request #101 from oslabs-beta/dev
deploying
2 parents 298432a + c6d38ec commit f4c0405

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+15171
-3
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/src/extension/build/

.eslintrc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"extends": ["airbnb", "plugin:jest/recommended"],
3+
"root": true,
4+
"plugins": ["jest"],
5+
"env": {
6+
"jest/globals": true,
7+
"browser": true,
8+
"webextensions": true
9+
},
10+
"globals": {
11+
"fetch": false
12+
},
13+
"rules": {
14+
"arrow-parens": [2, "as-needed"]
15+
}
16+
}

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules
2+
.DS_Store
3+
src/extension/build/bundles
4+
package/reactime-*.tgz
5+
tictactoe
6+
parents
7+
coverage
8+
src/extension/build.zip

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
services:
2+
- docker
3+
script:
4+
- docker-compose up --abort-on-container-exit
5+
deploy:
6+
provider: script
7+
skip_cleanup: true
8+
on:
9+
branches:
10+
only:
11+
- dev
12+
- master

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM node:10.16.2
2+
WORKDIR /usr/src/app
3+
COPY package*.json ./
4+
RUN npm i

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 reactime
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

babel.config.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module.exports = {
2+
presets: [
3+
[
4+
'@babel/preset-env',
5+
{
6+
targets: {
7+
node: 'current',
8+
},
9+
},
10+
],
11+
'@babel/preset-react',
12+
],
13+
};

demo2.gif

3.54 MB
Loading

docker-compose.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: '2'
2+
services:
3+
test:
4+
image: reacttt/test-lint
5+
container_name: reacttt-test-lint
6+
volumes:
7+
- .:/usr/src/app
8+
- /usr/src/app/node_modules
9+
command: npm run docker-test-lint

0 commit comments

Comments
 (0)