Skip to content

Commit a44320e

Browse files
dvvanessastoiberoltionchamparithinkhAnita Steiner
authored
Release 14.0.0 (#58)
* Move LoginMenu from ordino * Extract locale strings * Handle error case in login menu * prepare next development version 13.0.1-SNAPSHOT * Modify username and password placeholder i18n str * Prepare github changes * Remove circleci * prepare next dev version * Update .yo-rc.json * Update .yo-rc.json * Merge visyn_scripts * prepare release 14.0.0 Co-authored-by: oltionchampari <oltion.champari@datavisyn.io> Co-authored-by: Holger Stitz <holger.stitz@datavisyn.io> Co-authored-by: anita-steiner <> Co-authored-by: Anita Steiner <anita.steiner@datavisyn.io>
1 parent 87b5186 commit a44320e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+838
-415
lines changed

.eslintrc.js

Lines changed: 1 addition & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1 @@
1-
module.exports = {
2-
root: true,
3-
extends: [
4-
"airbnb",
5-
"airbnb-typescript",
6-
"airbnb/hooks",
7-
"eslint:recommended",
8-
"plugin:import/recommended",
9-
"plugin:react/recommended",
10-
"plugin:@typescript-eslint/recommended",
11-
"plugin:jest/recommended",
12-
"plugin:prettier/recommended"
13-
],
14-
plugins: ["react", "@typescript-eslint", "jest"],
15-
ignorePatterns: ["*.js"],
16-
env: {
17-
browser: true,
18-
es6: true,
19-
jest: true
20-
},
21-
globals: {
22-
Atomics: "readonly",
23-
SharedArrayBuffer: "readonly",
24-
},
25-
parser: "@typescript-eslint/parser",
26-
parserOptions: {
27-
// Make sure eslint and VS Code use the same path for the tsconfig.json:
28-
// https://github.com/typescript-eslint/typescript-eslint/issues/251
29-
tsconfigRootDir: __dirname,
30-
project: "./tsconfig.eslint.json"
31-
},
32-
rules: {
33-
// Disables jsx-a11y https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-webpack-loader-syntax.md
34-
...Object.keys(require('eslint-plugin-jsx-a11y').rules).reduce((acc, rule) => { acc[`jsx-a11y/${rule}`] = 'off'; return acc }, {}),
35-
"class-methods-use-this":"off",
36-
"linebreak-style": "off",
37-
"no-continue": "off",
38-
"no-multi-assign": "warn",
39-
"no-nested-ternary": "off",
40-
"no-param-reassign": ["error", { "props": false }],
41-
"no-return-assign": "warn",
42-
"no-restricted-syntax": "off",
43-
"no-plusplus": "off",
44-
"no-prototype-builtins": "warn",
45-
"no-minusminus": "off",
46-
"no-underscore-dangle": "off",
47-
"max-classes-per-file": "off",
48-
"no-param-reassign": "warn",
49-
"import/no-extraneous-dependencies": "off",
50-
// Disable the following 2 lines because to allow webpack file-loaders syntax
51-
"import/no-webpack-loader-syntax": "off",
52-
"import/no-unresolved": "off",
53-
"import/prefer-default-export": "off",
54-
"import/order": "error",
55-
"prefer-destructuring": ["warn", {"object": true, "array": false}],
56-
"prefer-promise-reject-errors": "warn",
57-
"prefer-spread": "warn",
58-
"@typescript-eslint/ban-ts-comment": "warn",
59-
"react/destructuring-assignment": "warn",
60-
"react/jsx-props-no-spreading": "off",
61-
"react/no-unused-class-component-methods": "warn",
62-
"react/prop-types": "off",
63-
"react/require-default-props": "off",
64-
"react/static-property-placement": ["warn", "property assignment", {
65-
childContextTypes: "static getter",
66-
contextTypes: "static public field",
67-
contextType: "static public field",
68-
displayName: "static public field",
69-
}]
70-
}
71-
};
1+
module.exports = require('visyn_scripts/config/eslintrc.template')({ tsconfigRootDir: __dirname });

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,13 @@ node_modules/
2626
/tests/**/*.map
2727
*.css
2828
package-lock.json
29+
/dist/
30+
/yarn.lock
31+
# yarn
32+
.pnp.*
33+
.yarn/*
34+
!.yarn/patches
35+
!.yarn/plugins
36+
!.yarn/releases
37+
!.yarn/sdks
38+
!.yarn/versions

.prettierrc.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
1-
module.exports = {
2-
"endOfLine": "auto",
3-
"singleQuote": true,
4-
"trailingComma": "all",
5-
"printWidth": 160
6-
};
1+
module.exports = require('visyn_scripts/config/prettierrc.template')

.yarn/releases/yarn-3.2.2.cjs

Lines changed: 783 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
yarnPath: .yarn/releases/yarn-3.2.2.cjs
2+
nodeLinker: node-modules

.yo-rc.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,11 @@
1818
"ignores": [],
1919
"extensions": [],
2020
"libraries": [],
21-
"entries": "./index.js",
2221
"promptValues": {
2322
"authorName": "datavisyn",
2423
"authorEmail": "contact@datavisyn.io",
2524
"authorUrl": "https://www.datavisyn.io",
2625
"githubAccount": "datavisyn"
2726
}
2827
}
29-
}
28+
}

dist/components/LoginForm.d.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

dist/components/LoginForm.d.ts.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/components/LoginForm.js

Lines changed: 0 additions & 25 deletions
This file was deleted.

dist/components/LoginForm.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)