Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

669 typings #1371

Merged
merged 41 commits into from
May 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
b88e66a
Add doc imports
ivmartel May 17, 2023
cdf4e5c
Add ts and api-extractor
ivmartel May 17, 2023
faa6bb7
Update lock file
ivmartel May 17, 2023
e80ee29
Reduce thresholds
ivmartel May 18, 2023
a98c9bc
Remove deprecated
ivmartel May 18, 2023
9d4bdcb
Reduce api
ivmartel May 18, 2023
a140bfc
Add missing doc
ivmartel May 18, 2023
83e8a58
Fix jsdoc types
ivmartel May 18, 2023
f630265
Remove namespace from api, add missing
ivmartel May 18, 2023
8a22622
Build directly in dist
ivmartel May 18, 2023
587305d
Update test pages after namespace remove
ivmartel May 18, 2023
1666216
Use dist folder build
ivmartel May 18, 2023
b235104
Update scripts
ivmartel May 18, 2023
33095e7
New dwv typings
ivmartel May 18, 2023
1be7c85
Remove non minified, now publishing map
ivmartel May 18, 2023
63ddd89
New beta build
ivmartel May 18, 2023
0ce85de
Extract method from other
ivmartel May 18, 2023
bbfcb6c
Separate array and object, fix this usage
ivmartel May 18, 2023
41a547d
Ignore augment ts error
ivmartel May 18, 2023
e9f5afb
Follow EclipseConfig type
ivmartel May 18, 2023
fb1f7bd
Avoid object augment, fix jsdoc types
ivmartel May 18, 2023
b192b8b
Fix jsdoc types
ivmartel May 18, 2023
31bd127
Remove epsilon redefinition
ivmartel May 18, 2023
6f91a7c
Fix jsdoc types
ivmartel May 18, 2023
95ac3cd
Add ts-ignore
ivmartel May 18, 2023
503e33b
Fix linting
ivmartel May 18, 2023
130ec27
Remove wrong comment
ivmartel May 19, 2023
772855a
Remove verbose in api script
ivmartel May 19, 2023
0eeb95b
Publish api in resrouces
ivmartel May 19, 2023
b2c9eeb
Remove console log
ivmartel May 19, 2023
d8331ce
Remove konva individual imports
ivmartel May 19, 2023
75dbd4f
Add missing doc, fix jsdoc types
ivmartel May 19, 2023
8a93388
Fix bad method call
ivmartel May 19, 2023
1a08c53
Fix jsdoc types
ivmartel May 19, 2023
989ec9b
Update API
ivmartel May 19, 2023
d3a29a7
Add doc for objects
ivmartel May 19, 2023
4a16be3
Update API
ivmartel May 19, 2023
495949e
Revert logger api changes
ivmartel May 19, 2023
4f7953a
Make build script create types and api
ivmartel May 19, 2023
52b1e52
Move api config files to api folder
ivmartel May 19, 2023
5850927
Update version number
ivmartel May 19, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/nodejs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@ jobs:
run: |
rm -Rf ./node_modules/*
yarn install --prod --frozen-lockfile
cp -Rf node_modules ./build
cp -Rf decoders ./build
cp -Rf tests/pacs/viewer.* ./build
./resources/scripts/prep-deploy.sh -f build/viewer.html
./resources/scripts/prep-deploy.sh -f build/viewer.js
cp -Rf dist ./build/demo
cp -Rf node_modules ./build/demo
cp -Rf decoders ./build/demo
cp -Rf tests/pacs/viewer.* ./build/demo
./resources/scripts/prep-deploy.sh -f build/demo/viewer.html
./resources/scripts/prep-deploy.sh -f build/demo/viewer.js
- name: Push to gh-pages (if master or develop branch)
if: env.IS_PUSH_DEVELOP == 'true' || env.IS_PUSH_MASTER == 'true'
run: |
Expand All @@ -51,7 +52,7 @@ jobs:
git config user.name github-actions
git checkout gh-pages
rm -Rf $DEPLOY_DIR$ALL
cp -Rf ./build/* $DEPLOY_DIR
cp -Rf ./build/demo/* $DEPLOY_DIR
git add -A $DEPLOY_DIR
git diff-index --quiet HEAD ||
git commit -m "CI run ${{ github.run_number }} pushed to gh-pages"
Expand Down
Loading