-
Notifications
You must be signed in to change notification settings - Fork 0
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 #2 from redbox-mint/develop
Version 1.0.0
- Loading branch information
Showing
89 changed files
with
9,339 additions
and
16,695 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
version: 2.1 | ||
jobs: | ||
build_and_publish: | ||
docker: | ||
- image: cimg/node:20.9.0 | ||
working_directory: ~/repo | ||
steps: | ||
- checkout | ||
- run: | ||
command: | | ||
set +e | ||
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash | ||
export NVM_DIR="$HOME/.nvm" | ||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | ||
- run: export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && nvm install && npm install && node_modules/.bin/tsc | ||
- run: chmod +x support/build/compileAngularLegacy.sh && support/build/compileAngularLegacy.sh labarchives | ||
# run tests! | ||
# - run: npm test | ||
# # store test results | ||
# - store_test_results: | ||
# path: test_results | ||
|
||
# store code coverage | ||
# - persist_to_workspace: | ||
# root: ~/repo | ||
# paths: . | ||
- run: | ||
name: Authenticate with NPM | ||
command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/repo/.npmrc | ||
- run: | ||
name: Publish package | ||
command: npm publish --access public | ||
build_only: | ||
docker: | ||
- image: cimg/node:20.9.0 | ||
working_directory: ~/repo | ||
steps: | ||
- checkout | ||
- run: | ||
command: | | ||
set +e | ||
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash | ||
export NVM_DIR="$HOME/.nvm" | ||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | ||
- run: export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && nvm install && npm install && node_modules/.bin/tsc | ||
- run: chmod +x support/build/compileAngularLegacy.sh && support/build/compileAngularLegacy.sh labarchives | ||
# run tests! | ||
# - run: npm test | ||
# # store test results | ||
# - store_test_results: | ||
# path: test_results | ||
|
||
# store code coverage | ||
# - persist_to_workspace: | ||
# root: ~/repo | ||
# paths: . | ||
|
||
|
||
workflows: | ||
publish: | ||
jobs: | ||
- build_and_publish: | ||
filters: | ||
tags: | ||
only: /^v.*/ | ||
branches: | ||
ignore: /.*/ | ||
build: | ||
jobs: | ||
- build_only: | ||
filters: | ||
tags: | ||
ignore: /.*/ | ||
branches: | ||
only: /.*/ | ||
# jobs: | ||
# build: | ||
# docker: | ||
# - image: "cimg/base:stable" | ||
# - checkout | ||
# - node/install: | ||
# node-version: 12.16.0 | ||
# - run: npm install --production | ||
# - run: node_modules/.bin/tsc | ||
# - persist_to_workspace: | ||
# root: . | ||
# paths: | ||
# - . | ||
# test: | ||
# machine: true | ||
# steps: | ||
# - docker/install-docker-compose | ||
# - attach_workspace: | ||
# at: /home/circleci/project | ||
# - run: export NVM_DIR=/opt/circleci/.nvm && source /opt/circleci/.nvm/nvm.sh && nvm install 12.16.0 && nvm use 12.16.0 | ||
# - run: export NVM_DIR=/opt/circleci/.nvm && source /opt/circleci/.nvm/nvm.sh && nvm use 12.16.0 && node_modules/.bin/tsc -p tsconfig-codecov.json | ||
# - run: (cd support/integration-testing && docker-compose -f docker-compose.newman.yml up --abort-on-container-exit --exit-code-from redboxportal && docker-compose -f docker-compose.mocha.yml up --abort-on-container-exit --exit-code-from redboxportal) | ||
# - run: export NVM_DIR=/opt/circleci/.nvm && source /opt/circleci/.nvm/nvm.sh && nvm use 12.16.0 && npm i -g codecov && codecov -t $CODECOV_TOKEN | ||
# - run: export NVM_DIR=/opt/circleci/.nvm && source /opt/circleci/.nvm/nvm.sh && nvm use 12.16.0 && node_modules/.bin/tsc | ||
# | ||
# orbs: | ||
# node: circleci/[email protected] | ||
# docker: circleci/[email protected] | ||
# version: 2.1 | ||
# workflows: | ||
# |
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 |
---|---|---|
|
@@ -45,3 +45,7 @@ e2e/*.map | |
Thumbs.db | ||
|
||
test/angular | ||
api/* | ||
angular-legacy/shared | ||
dist/ | ||
assets/angular |
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 @@ | ||
.circleci | ||
support | ||
test | ||
.editorconfig | ||
.gitignore | ||
angular-legacy | ||
.idea | ||
typescript | ||
.nvmrc | ||
tsconfig.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
20.9.0 |
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
File renamed without changes.
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,44 @@ | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# compiled output | ||
dist/* | ||
/tmp | ||
/out-tsc | ||
shared/* | ||
|
||
# dependencies | ||
/node_modules | ||
|
||
# IDEs and editors | ||
/.idea | ||
.project | ||
.classpath | ||
.c9/ | ||
*.launch | ||
.settings/ | ||
*.sublime-workspace | ||
|
||
# IDE - VSCode | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
|
||
# misc | ||
/.sass-cache | ||
/connect.lock | ||
/coverage | ||
/libpeerconnection.log | ||
npm-debug.log | ||
testem.log | ||
/typings | ||
yarn-error.log | ||
|
||
# e2e | ||
/e2e/*.js | ||
/e2e/*.map | ||
|
||
# System Files | ||
.DS_Store | ||
Thumbs.db |
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 @@ | ||
14.19.0 |
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
2 changes: 1 addition & 1 deletion
2
angular/labarchives/karma.conf.js → angular-legacy/karma.conf.js
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
File renamed without changes.
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
4 changes: 2 additions & 2 deletions
4
.../components/labarchives-list.component.ts → .../components/labarchives-list.component.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
Oops, something went wrong.