-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from dlepaux/feature/upgrade
Important update (upgrades, replace deprecated dependencies)
- Loading branch information
Showing
63 changed files
with
7,918 additions
and
23,180 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 |
---|---|---|
@@ -1 +0,0 @@ | ||
tests/* | ||
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,16 +1,9 @@ | ||
# Vendors | ||
node_modules | ||
|
||
# Coverage | ||
.next | ||
*.DS_Store | ||
coverage | ||
|
||
# Documentation | ||
dist | ||
docs | ||
|
||
# Others | ||
.next | ||
*.DS_Store | ||
|
||
# Datasets | ||
tests/datasets | ||
github-pages/favicons | ||
node_modules | ||
testing/datasets | ||
testing/manifest.json |
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,24 +1,4 @@ | ||
.github | ||
.husky | ||
.next | ||
brand | ||
coverage | ||
deploy | ||
docs | ||
node_modules | ||
processor | ||
src | ||
tests | ||
.real-favicon-data.json | ||
.real-favicon.json | ||
.commitlintrc.cjs | ||
.editorconfig | ||
.gitignore | ||
.npmignore | ||
.versionrc.json | ||
changelog.md | ||
code-of-conduct.md | ||
codevoc.yml | ||
contributing.md | ||
licence.md | ||
tsconfig.json | ||
!dist | ||
!licence.md | ||
!package.json | ||
!readme.md |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
#!bin/bash | ||
|
||
rm -Rf docs | ||
typedoc ./src | ||
|
||
ts-node --esm --skipProject ./github-pages/favicons-generator.ts | ||
ts-node --esm --skipProject ./github-pages/sitemap-generator.ts | ||
ts-node --esm --skipProject ./github-pages/meta-injector.ts | ||
|
||
cp -r ./github-pages/public/* ./docs/ |
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,8 @@ | ||
#!bin/bash | ||
|
||
# Build Library | ||
ts-node build.ts | ||
|
||
# Build Types | ||
tsc src/index.ts --emitDeclarationOnly --declaration --outdir dist | ||
tsc processor/realtime-bpm-processor.ts --emitDeclarationOnly --declaration --outfile dist/realtime-bpm-processor.d.ts |
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,21 @@ | ||
#!bin/bash | ||
|
||
if [ -z "$1" ]; then | ||
echo "\e[31mError: You need to provide the name of the project that is right next to this one\e[0m" | ||
exit 1 | ||
fi | ||
|
||
rm -Rf dist | ||
npm run build | ||
|
||
# If necessary, delete .next repository | ||
if [ -d "../$1/.next/" ]; then | ||
rm -Rf "../$1/.next/" | ||
fi | ||
|
||
# Replace the library with the new draft version for further testing | ||
if [ -d "../$1/node_modules/realtime-bpm-analyzer/dist/" ]; then | ||
rm -Rf ../$1/node_modules/realtime-bpm-analyzer/dist/ | ||
mkdir ../$1/node_modules/realtime-bpm-analyzer/dist/ | ||
cp ./dist/* ../$1/node_modules/realtime-bpm-analyzer/dist/ | ||
fi |
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,5 @@ | ||
#!bin/bash | ||
|
||
rm -Rf docs | ||
npm run build:docs | ||
gh-pages -d docs -b gh-pages |
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,7 @@ | ||
#!bin/bash | ||
set -e | ||
npm test | ||
npm run build | ||
npm publish | ||
|
||
bin/deploy.sh |
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 @@ | ||
#!bin/bash | ||
set -e | ||
npm test |
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,12 @@ | ||
#!bin/bash | ||
set -e | ||
|
||
if [ -z "$1" ]; then | ||
echo "\e[31mError: You need to provide the version you want to increase (patch, minor or major)\e[0m" | ||
exit 1 | ||
fi | ||
|
||
bash bin/release/before.sh | ||
standard-version --release-as $1 | ||
git push | ||
bash bin/release/after.sh |
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
Oops, something went wrong.