Skip to content

Commit a1d5ff9

Browse files
authored
Merge pull request #188 from springload/next
Next
2 parents 504fd14 + fdcbda2 commit a1d5ff9

File tree

75 files changed

+5144
-5572
lines changed

Some content is hidden

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

75 files changed

+5144
-5572
lines changed

.circleci/config.yml

+15-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
- restore_cache:
1111
keys:
1212
- node-modules-{{ checksum "yarn.lock" }}
13-
- node-modules-
1413

1514
- run: yarn install --frozen-lockfile
1615

@@ -72,6 +71,18 @@ jobs:
7271
- run: yarn test:coverage
7372
- run: yarn coveralls
7473

74+
integration-job:
75+
docker:
76+
- image: circleci/node:dubnium-browsers
77+
78+
working_directory: ~/repo
79+
80+
steps:
81+
- checkout
82+
- attach_workspace:
83+
at: ~/repo
84+
- run: yarn test:integration --ci
85+
7586
workflows:
7687
version: 2
7788
build-deploy:
@@ -89,3 +100,6 @@ workflows:
89100
- coverage-job:
90101
requires:
91102
- install-job
103+
- integration-job:
104+
requires:
105+
- install-job

.gitignore

+2-3
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,8 @@ bower_components
7676
# Generated files
7777
# -------------------------------------------------
7878
dist
79-
pages
80-
/demo/js/bundle.js
81-
/demo/js/bundle.map.js
79+
demo/dist
80+
integration/dist
8281

8382
# -------------------------------------------------
8483
# Visual Studio Code

.npmignore

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ src
77
.npmignore
88
webpack
99
.nvmrc
10-
.travis.yml
1110
tsconfig.*
1211
tslint.json
1312
.editorconfig

.prettierrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"tabWidth": 4,
33
"singleQuote": true,
4-
"trailingComma": "all"
4+
"trailingComma": "all",
5+
"proseWrap": "always"
56
}

0 commit comments

Comments
 (0)