Skip to content

Commit 6c8b6fe

Browse files
committed
chore(overmind): rebase from upstream
2 parents 4d6a04e + d395b13 commit 6c8b6fe

File tree

207 files changed

+21441
-9870
lines changed

Some content is hidden

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

207 files changed

+21441
-9870
lines changed

.cz-config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ module.exports = {
2929
],
3030

3131
scopes: [
32+
{ name: 'website' },
3233
{ name: 'overmind' },
3334
{ name: 'overmind-devtools' },
3435
{ name: 'react-overmind' },

.travis.yml

Lines changed: 28 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
sudo: false
22
language: node_js
33
node_js: '8'
4+
install:
5+
- npm ci
46
cache:
57
directories:
6-
- node_modules
8+
- '$HOME/.npm'
79
addons:
810
apt:
911
sources:
@@ -15,25 +17,32 @@ git:
1517
depth: 9999
1618
notifications:
1719
email: false
20+
before_install: dpkg --compare-versions `npm -v` ge 6.3 || npm i -g npm@^6.3
1821
script:
19-
- |
20-
if [[ $SKIP_TESTS != 'true' ]]; then
21-
npm prune
22-
npm run checkdeps
23-
npm run lint
24-
npm test
25-
fi
22+
- |
23+
if [[ $SKIP_TESTS != 'true' ]]; then
24+
npm prune
25+
npm run checkdeps
26+
npm run lint
27+
npm test
28+
fi
2629
after_success:
27-
- |
28-
if [[ $TRAVIS_SECURE_ENV_VARS == 'true' ]]; then
29-
git config --global user.email "[email protected]";
30-
git config --global user.name "Cerebral JS";
31-
fi
32-
if [[ $TRAVIS_BRANCH == 'master' || $TRAVIS_BRANCH == 'next' ]] && [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then
33-
printf "//registry.npmjs.org/:_authToken=$NPM_TOKEN\n" > ~/.npmrc
34-
npm install --no-save [email protected]
35-
npm run release
36-
fi
30+
- |
31+
if [[ $TRAVIS_SECURE_ENV_VARS == 'true' ]]; then
32+
git config --global user.email "[email protected]";
33+
git config --global user.name "Cerebral JS";
34+
fi
35+
if [[ $TRAVIS_BRANCH == 'master' || $TRAVIS_BRANCH == 'next' ]] && [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then
36+
printf "//registry.npmjs.org/:_authToken=$NPM_TOKEN\n" > ~/.npmrc
37+
npm install --no-save [email protected] now
38+
npm run release
39+
fi
40+
if [[ $TRAVIS_BRANCH == 'master' ]] && [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then
41+
now ./packages/overmind-website --docker --token $NOW_TOKEN && now alias overmindjs.org --token $NOW_TOKEN
42+
fi
43+
if [[ $TRAVIS_BRANCH == 'next' ]] && [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then
44+
now ./packages/overmind-website --docker --token $NOW_TOKEN && now alias next.overmindjs.org --token $NOW_TOKEN
45+
fi
3746
branches:
3847
except:
39-
- "/^v\\d+\\.\\d+\\.\\d+$/"
48+
- "/^v\\d+\\.\\d+\\.\\d+$/"

logo.png

55.9 KB
Loading

logo.psd

357 KB
Binary file not shown.

now.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name": "overmind-website"
3+
}

0 commit comments

Comments
 (0)