This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
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 #681 from bosch-io/feature/language-support
Full language support
- Loading branch information
Showing
100 changed files
with
2,882 additions
and
1,414 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
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,3 +1,10 @@ | ||
/* | ||
* Copyright (c) 2020-2021 - 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"], | ||
}; |
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,13 +1,14 @@ | ||
{ | ||
"name": "company-agent-frontend", | ||
"name": "business-partner-agent-frontend", | ||
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"serve": "vue-cli-service serve", | ||
"test:unit": "vue-cli-service test:unit", | ||
"build": "vue-cli-service build", | ||
"lint": "vue-cli-service lint", | ||
"license-check": "license-checker --production --json --onlyAllow 'MIT;Python-2.0;Apache-2.0;BSD-2-Clause;BSD-3-Clause' --excludePackages '[email protected]'", | ||
"lint": "vue-cli-service lint && npm run license-file-headers-add", | ||
"license-file-headers-add": "license-check-and-add add -f licenses/config.json -r 2021", | ||
"license-check": "license-checker --production --json --onlyAllow 'MIT;Python-2.0;Apache-2.0;BSD-2-Clause;BSD-3-Clause' --excludePackages '[email protected]'", | ||
"license": "generate-attribution -o ./licenses", | ||
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'" | ||
}, | ||
|
@@ -44,10 +45,11 @@ | |
"@vue/eslint-config-prettier": "^6.0.0", | ||
"@vue/test-utils": "^1.1.1", | ||
"babel-eslint": "^10.1.0", | ||
"eslint": "^6.7.2", | ||
"eslint": "^6.8.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"eslint-plugin-vue": "^6.2.2", | ||
"eslint-plugin-vue": "^8.1.0", | ||
"husky": "^4.3.0", | ||
"license-check-and-add": "^4.0.3", | ||
"license-checker": "25.0.1", | ||
"lint-staged": "^10.4.2", | ||
"node-sass": "^5.0.0", | ||
|
@@ -68,6 +70,7 @@ | |
} | ||
}, | ||
"lint-staged": { | ||
"**/*.{js,vue}": "prettier --write" | ||
"**/*.{html,xml,ts,css,scss,env,dockerignore,sh}": "license-check-and-add add -f licenses/config.json -r 2021", | ||
"**/*.{js,vue}": ["license-check-and-add add -f licenses/config.json -r 2021", "prettier --write"] | ||
} | ||
} |
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.