This repository has been archived by the owner on Feb 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 4.0.0
- Loading branch information
Showing
20 changed files
with
1,983 additions
and
1,112 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
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ node_modules/ | |
*.map | ||
*.css | ||
*.log | ||
/.cache-loader |
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,46 @@ | ||
image: circleci/node:12-browsers | ||
|
||
variables: | ||
GIT_DEPTH: "1" | ||
|
||
cache: | ||
key: "$CI_REPOSITORY_URL-$CI_COMMIT_REF_NAME" | ||
paths: | ||
- node_modules | ||
|
||
before_script: | ||
# Install ssh-agent if not already installed, it is required by Docker. | ||
# (change apt-get to yum if you use a CentOS-based image) | ||
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' | ||
|
||
# Run ssh-agent (inside the build environment) | ||
- eval $(ssh-agent -s) | ||
|
||
# Add the SSH key stored in SSH_PRIVATE_KEY variable to the agent store | ||
- ssh-add <(echo "$SSH_PRIVATE_KEY") | ||
|
||
# For Docker builds disable host key checking. Be aware that by adding that | ||
# you are suspectible to man-in-the-middle attacks. | ||
# WARNING: Use this only with the Docker executor, if you use it with shell | ||
# you will overwrite your user's SSH config. | ||
- mkdir -p ~/.ssh | ||
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config' | ||
|
||
stages: | ||
- install | ||
- build | ||
|
||
install-npm-wee: | ||
stage: install | ||
script: | ||
- npm install | ||
|
||
dist: | ||
stage: build | ||
script: | ||
- npm run dist | ||
allow_failure: false | ||
artifacts: | ||
expire_in: 1 week | ||
paths: | ||
- dist |
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 |
---|---|---|
|
@@ -5,13 +5,13 @@ | |
"author": "The Caleydo Team", | ||
"githubAccount": "phovea", | ||
"libraries": [ | ||
"papaparse", | ||
"d3" | ||
"d3", | ||
"papaparse" | ||
], | ||
"modules": [ | ||
"phovea_core", | ||
"phovea_ui", | ||
"phovea_d3" | ||
"phovea_d3", | ||
"phovea_ui" | ||
], | ||
"extensions": [ | ||
{ | ||
|
@@ -73,10 +73,16 @@ | |
"ignores": [], | ||
"today": "Tue, 01 Nov 2016 15:57:01 GMT", | ||
"libraryExternals": [ | ||
"papaparse", | ||
"d3", | ||
"papaparse", | ||
"jquery", | ||
"font-awesome" | ||
] | ||
], | ||
"promptValues": { | ||
"authorName": "The Caleydo Team", | ||
"authorEmail": "[email protected]", | ||
"authorUrl": "https://caleydo.org", | ||
"githubAccount": "phovea" | ||
} | ||
} | ||
} |
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
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.