Skip to content

Commit

Permalink
Merge pull request #105 from Paneon/feature/convert-history
Browse files Browse the repository at this point in the history
Feature/convert history
  • Loading branch information
Macavity authored Feb 15, 2024
2 parents 612bb26 + e01b3d5 commit 44fd8ca
Show file tree
Hide file tree
Showing 205 changed files with 5,721 additions and 13,645 deletions.
6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
node_modules
vendor
var
public
webpack.config.js
cypress.config.ts
cypress
70 changes: 35 additions & 35 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
{
"root": true,
"ignorePatterns": ["**/*"],
"plugins": ["@nx"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {
"@nx/enforce-module-boundaries": [
"error",
{
"enforceBuildableLibDependency": true,
"allow": [],
"depConstraints": [
{
"sourceTag": "*",
"onlyDependOnLibsWithTags": ["*"]
}
]
}
]
}
"env": {
"browser": true,
"es2021": true,
"node": true
},
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nx/typescript"],
"rules": {}
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nx/javascript"],
"rules": {}
"plugins": [
"react",
"@typescript-eslint",
"react-hooks"
],
"rules": {
"react/react-in-jsx-scope": "off",
"react/jsx-filename-extension": [1, { "extensions": [".tsx"] }],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unused-vars": "warn",
"no-console": "warn",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"@typescript-eslint/no-non-null-assertion": "off"
},
{
"files": ["*.spec.ts", "*.spec.tsx", "*.spec.js", "*.spec.jsx"],
"env": {
"jest": true
},
"rules": {}
"settings": {
"react": {
"version": "detect"
}
}
]
}
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@ jobs:
run: |
npm install
- uses: mansagroup/nrwl-nx-action@v3
with:
targets: lint,build #,test
- name: Lint
run: npm run lint

- name: Test
run: npm run test

- name: Webpack Encore
run: npm run build:encore
run: npm run build:prod

server:
name: Symfony Build
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,8 @@ jobs:
- name: 🛠 Install Dependencies
run: npm install

- name: 🛠 Build NX
uses: mansagroup/nrwl-nx-action@v3
with:
targets: build
all: true

- name: 🛠 Build Webpack Encore
run: npm run build:encore
run: npm run build:prod

- name: Remove not required files
run: |
Expand Down
8 changes: 0 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@
.phpunit.result.cache
###< phpunit/phpunit ###

###> symfony/phpunit-bridge ###
.phpunit.result.cache
/phpunit.xml
###< symfony/phpunit-bridge ###

# compiled output
dist
tmp
Expand All @@ -44,13 +39,10 @@ node_modules
!.vscode/extensions.json

# misc
.angular
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

Expand Down
2 changes: 0 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
# Add files here to ignore them from prettier formatting
/dist
/coverage
.angular
Empty file removed apps/.gitkeep
Empty file.
10 changes: 0 additions & 10 deletions apps/client-e2e/.eslintrc.json

This file was deleted.

6 changes: 0 additions & 6 deletions apps/client-e2e/cypress.config.ts

This file was deleted.

33 changes: 0 additions & 33 deletions apps/client-e2e/project.json

This file was deleted.

13 changes: 0 additions & 13 deletions apps/client-e2e/src/e2e/app.cy.ts

This file was deleted.

4 changes: 0 additions & 4 deletions apps/client-e2e/src/fixtures/example.json

This file was deleted.

1 change: 0 additions & 1 deletion apps/client-e2e/src/support/app.po.ts

This file was deleted.

33 changes: 0 additions & 33 deletions apps/client-e2e/src/support/commands.ts

This file was deleted.

17 changes: 0 additions & 17 deletions apps/client-e2e/src/support/e2e.ts

This file was deleted.

16 changes: 0 additions & 16 deletions apps/client-e2e/tsconfig.json

This file was deleted.

36 changes: 0 additions & 36 deletions apps/client/.eslintrc.json

This file was deleted.

7 changes: 0 additions & 7 deletions apps/client/Dockerfile

This file was deleted.

22 changes: 0 additions & 22 deletions apps/client/jest.config.ts

This file was deleted.

Loading

0 comments on commit 44fd8ca

Please sign in to comment.