Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
Merge pull request #711 from bosch-io/feature/json-ld-ui
Browse files Browse the repository at this point in the history
JSON-LD schema import UI
  • Loading branch information
schlagtim authored Feb 8, 2022
2 parents a2f9659 + 4802c0f commit 921d4be
Show file tree
Hide file tree
Showing 138 changed files with 2,319 additions and 545 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ scripts/**/*.txn
scripts/local-network/von-network/
scripts/scenarios/local-network/von-network/
scripts/scenarios/local-network/tails-server/
scripts/scenarios/local-network/resolver/*.txn
scripts/scenarios/local-network/resolver/
scripts/dev-*
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
FROM node:16-alpine as VUE
WORKDIR /frontend
COPY frontend .
RUN npm install && npm run license && npm run build
RUN npm install && npm run build

# Micronaut build
FROM maven:3-eclipse-temurin-17-alpine as MAVEN
Expand Down
2 changes: 1 addition & 1 deletion frontend/.dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020-2021 - for information on the respective copyright owner
# Copyright (c) 2020-2022 - for information on the respective copyright owner
# see the NOTICE file and/or the repository at
# https://github.com/hyperledger-labs/business-partner-agent
#
Expand Down
2 changes: 1 addition & 1 deletion frontend/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020-2021 - for information on the respective copyright owner
# Copyright (c) 2020-2022 - for information on the respective copyright owner
# see the NOTICE file and/or the repository at
# https://github.com/hyperledger-labs/business-partner-agent
#
Expand Down
2 changes: 1 addition & 1 deletion frontend/.eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020-2021 - for information on the respective copyright owner
# Copyright (c) 2020-2022 - for information on the respective copyright owner
# see the NOTICE file and/or the repository at
# https://github.com/hyperledger-labs/business-partner-agent
#
Expand Down
2 changes: 1 addition & 1 deletion frontend/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020-2021 - for information on the respective copyright owner
* Copyright (c) 2020-2022 - for information on the respective copyright owner
* see the NOTICE file and/or the repository at
* https://github.com/hyperledger-labs/business-partner-agent
*
Expand Down
2 changes: 1 addition & 1 deletion frontend/.husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
# Copyright (c) 2020-2021 - for information on the respective copyright owner
# Copyright (c) 2020-2022 - for information on the respective copyright owner
# see the NOTICE file and/or the repository at
# https://github.com/hyperledger-labs/business-partner-agent
#
Expand Down
4 changes: 2 additions & 2 deletions frontend/.lintstagedrc.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"**/*.{js,vue,html,xml,ts,css,scss,env,dockerignore,sh}": [
"license-check-and-add add -f license-header/config.json -r 2021",
"npm run license-file-headers-add",
"prettier --write",
"vue-cli-service lint"
"npm run lint"
],
"**/*.json": ["prettier --write"]
}
2 changes: 1 addition & 1 deletion frontend/.npmrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020-2021 - for information on the respective copyright owner
# Copyright (c) 2020-2022 - for information on the respective copyright owner
# see the NOTICE file and/or the repository at
# https://github.com/hyperledger-labs/business-partner-agent
#
Expand Down
4 changes: 3 additions & 1 deletion frontend/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020-2021 - for information on the respective copyright owner
# Copyright (c) 2020-2022 - for information on the respective copyright owner
# see the NOTICE file and/or the repository at
# https://github.com/hyperledger-labs/business-partner-agent
#
Expand All @@ -7,3 +7,5 @@ dist
node_modules
coverage
setup-runtime.sh
.env
.dockerignore
7 changes: 6 additions & 1 deletion frontend/babel.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
/*
* Copyright (c) 2020-2021 - for information on the respective copyright owner
* Copyright (c) 2020-2022 - for information on the respective copyright owner
* see the NOTICE file and/or the repository at
* https://github.com/hyperledger-labs/business-partner-agent
*
* SPDX-License-Identifier: Apache-2.0
*/
module.exports = {
presets: ["@vue/cli-plugin-babel/preset"],
env: {
test: {
plugins: ["transform-require-context"],
},
},
};
6 changes: 5 additions & 1 deletion frontend/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020-2021 - for information on the respective copyright owner
* Copyright (c) 2020-2022 - for information on the respective copyright owner
* see the NOTICE file and/or the repository at
* https://github.com/hyperledger-labs/business-partner-agent
*
Expand All @@ -20,6 +20,10 @@ module.exports = {
"!**/node_modules/**",
"!**/dist/**",
],
transformIgnorePatterns: [
"/node_modules/(?!vuetify|vue-markdown-render|vue-advanced-chat|vue-json-pretty|qrcode.vue)",
],
testEnvironment: "jest-environment-jsdom-sixteen",
testMatch: ["**/*.spec.{ts,js}", "!**/node_modules/**"],
setupFiles: ["<rootDir>/test-config/setup-jest.ts"],
};
99 changes: 99 additions & 0 deletions frontend/licenses/licenseInfos.json

Large diffs are not rendered by default.

Loading

0 comments on commit 921d4be

Please sign in to comment.