Skip to content

Commit

Permalink
feat!: upgrade to Aurelia 2, closes #709 (#1038)
Browse files Browse the repository at this point in the history
feat!: upgrade to Aurelia 2, closes #709
  • Loading branch information
MaximBalaganskiy authored Sep 27, 2023
1 parent caa54d9 commit ab8e29d
Show file tree
Hide file tree
Showing 170 changed files with 5,886 additions and 11,122 deletions.
Empty file added .env.development
Empty file.
164 changes: 0 additions & 164 deletions .eslintrc

This file was deleted.

61 changes: 61 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module"
},
"env": {
"browser": true,
"node": true
},
"settings": {
"node": {
"tryExtensions": [".js", ".json", ".node", ".ts", ".d.ts"],
"resolvePaths": ["node_modules/@types"]
}
},
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": ["@typescript-eslint", "node"],
"ignorePatterns": ["*.spec.ts"],
"rules": {
"class-methods-use-this": "off",
"consistent-return": "off",
"curly": ["error", "all"],
"default-param-last": "off",
"dot-notation": "off",
"import/extensions": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"import/order": "off",
"node/no-missing-require": "off",
"no-param-reassign": "off",
"no-restricted-syntax": "off",
"no-underscore-dangle": "off",
"no-use-before-define": [
"error",
{
"functions": false,
"classes": false
}
],
"node/no-extraneous-require": "off",
"node/no-unpublished-require": "off",
"node/no-unsupported-features/es-syntax": "off",
"prefer-destructuring": "off",
"prefer-object-spread": "off",
"strict": "off",
"max-len": "off",
"arrow-body-style": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_", "destructuredArrayIgnorePattern": "^_" }
]
}
}
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- next
pull_request:
branches:
- '**'
- "**"

jobs:
run:
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
with:
working-directory: test/cypress
config-file: cypress.config.ts
wait-on: 'http://localhost:9000'
wait-on: "http://localhost:9000"
browser: chrome
record: true
env:
Expand Down
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ doc
src
ISSUE_TEMPLATE.md
index.ejs
index.html
jest.conf.js
npm-debug.log
package-scripts.js
Expand Down
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"--runInBand",
"${fileBasename}",
"--config",
"${workspaceFolder}/test/jest.config.js"
"${workspaceFolder}/test/jest.config.ts"
],
"console": "internalConsole",
"internalConsoleOptions": "neverOpen",
Expand All @@ -53,7 +53,7 @@
"--runInBand",
"${fileBasename}",
"--config",
"${workspaceFolder}/test/jest.config.js",
"${workspaceFolder}/test/jest.config.ts",
"-t=${selectedText}$",
"--watch"
],
Expand Down
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"label": "Build Library",
"type": "shell",
"command": "yarn run build",
"command": "yarn run build:plugin",
"problemMatcher": []
},
{
Expand Down Expand Up @@ -40,7 +40,7 @@
{
"label": "Start Library Development",
"type": "shell",
"command": "yarn start:dev",
"command": "yarn start",
"problemMatcher": []
},
{
Expand Down
69 changes: 0 additions & 69 deletions aurelia_project/aurelia.json

This file was deleted.

4 changes: 0 additions & 4 deletions aurelia_project/environments/dev.ts

This file was deleted.

4 changes: 0 additions & 4 deletions aurelia_project/environments/prod.ts

This file was deleted.

4 changes: 0 additions & 4 deletions aurelia_project/environments/stage.ts

This file was deleted.

19 changes: 0 additions & 19 deletions index.ejs

This file was deleted.

Loading

0 comments on commit ab8e29d

Please sign in to comment.