Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #89 from Caleydo/release-5.0.0
Browse files Browse the repository at this point in the history
Release 5.0.0
  • Loading branch information
Anita Steiner authored Feb 15, 2021
2 parents e4fd8c9 + 3b1da92 commit 037aea6
Show file tree
Hide file tree
Showing 31 changed files with 541 additions and 881 deletions.
29 changes: 12 additions & 17 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
version: 2
jobs:
build:
version: 2.1

executors:
node-executor:
working_directory: ~/phovea
docker:
- image: circleci/node:12.13-buster-browsers

jobs:
build:
executor: node-executor
steps:
- checkout
- run:
Expand All @@ -22,8 +27,7 @@ jobs:
(grep -l '._resolved.: .\(git[^:]*\|bitbucket\):' ./node_modules/*/package.json || true) | xargs -r dirname | xargs -r rm -rf
- save_cache:
key: deps1-{{ .Branch }}-{{ checksum "package.json" }}
paths:
- ./node_modules
paths: ./node_modules
- run:
name: Install npm dependencies from git repositories (always get latest commit)
command: npm install
Expand All @@ -35,9 +39,8 @@ jobs:
command: npm run dist
- store_artifacts:
path: dist
destination: dist
workflows:
version: 2
version: 2.1
# build-nightly:
# triggers:
# - schedule:
Expand All @@ -48,17 +51,9 @@ workflows:
# - develop
# jobs:
# - build
build-branch:
jobs:
- build:
filters:
tags:
ignore: /^v.*/
build-tag:
build-branches-and-tags:
jobs:
- build:
filters:
branches:
ignore: /.*/
tags:
only: /^v.*/
only: /.*/
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -125,3 +125,10 @@ AUTHORS text
# with the python modules ``pickle``, ``dbm.*``,
# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
# (among others).


# Mark compiled files as generated to hide them in PRs
/dist/** linguist-generated=true

# Hide compiled files from git diff and auto-replace them when merging different branches
/dist/** -diff -merge
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/.tscache
/.idea
/lib/
/dist/tsBuildInfoFile
node_modules/
/src/**/*.js
/tests/**/*.js
Expand Down
157 changes: 0 additions & 157 deletions dist/404.html

This file was deleted.

6 changes: 3 additions & 3 deletions dist/app/gapminder.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/app/gapminder.js.map

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions dist/initialize/GapMinderApp.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions dist/initialize/GapMinderApp.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/initialize/GapMinderApp.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file.
41 changes: 41 additions & 0 deletions dist/scss/base/_base.scss

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 48 additions & 0 deletions dist/scss/components/_chart.scss

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 037aea6

Please sign in to comment.