-
-
Notifications
You must be signed in to change notification settings - Fork 856
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
66 changed files
with
10,449 additions
and
1,558 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*/node_modules | ||
*.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
open_collective: immer | ||
custom: https://www.paypal.me/michelweststrate | ||
patreon: mweststrate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
language: node_js | ||
node_js: | ||
- "8" | ||
- "10" | ||
# - "node" | ||
- "8" | ||
- "10" | ||
# - "node" | ||
env: | ||
- NODE_ENV=TEST | ||
- NODE_ENV=TEST | ||
cache: | ||
yarn: true | ||
directories: | ||
- "node_modules" | ||
yarn: true | ||
directories: | ||
- "node_modules" | ||
before_script: | ||
- yarn global add if-node-version | ||
- yarn global add if-node-version | ||
script: | ||
- yarn build || travis_terminate 1 | ||
- if-node-version 10 || { yarn test && travis_terminate 0; } | ||
- yarn coveralls | ||
- yarn test:flow | ||
- yarn test:dts | ||
- yarn build || travis_terminate 1 | ||
- if-node-version 10 || { yarn test && travis_terminate 0; } | ||
- yarn coveralls | ||
- yarn test:flow | ||
- yarn test:dts | ||
jobs: | ||
include: | ||
- stage: deploy | ||
if: branch == master && !fork | ||
node_js: "8.9.1" # pre-installed version | ||
script: | ||
- yarn build | ||
- yarn global add semantic-release@^15 | ||
- semantic-release | ||
include: | ||
- stage: deploy | ||
if: branch == master && !fork | ||
node_js: "8.12.0" # pre-installed version | ||
script: | ||
- yarn build | ||
- yarn global add semantic-release@^15 | ||
- semantic-release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM node:8.11.4 | ||
|
||
WORKDIR /app/website | ||
|
||
EXPOSE 3000 35729 | ||
COPY ./docs /app/docs | ||
COPY ./website /app/website | ||
RUN yarn install | ||
|
||
CMD ["yarn", "start"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.