Skip to content

Commit

Permalink
Merge pull request #205 from kaitj/react
Browse files Browse the repository at this point in the history
React Frontend
  • Loading branch information
kaitj authored Sep 27, 2023
2 parents e6f81ac + be4b3bc commit 7dac1ca
Show file tree
Hide file tree
Showing 29 changed files with 8,721 additions and 313 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/afids-validator_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,13 @@ jobs:
find: 'version = "v(?:([0-9]+\.[0-9]+\.[0-9]+.+)|([0-9]+\.[0-9]+\.[0-9]+))"'
replace: 'version = "${{ env.NEW_RELEASE }}-pre.${{ env.NEW_BUMP }}"'

- name: Update version in package.json
uses: jacobtomlinson/gha-find-replace@master
with:
include: "package.json"
find: '"version": "v(?:([0-9]+\.[0-9]+\.[0-9]+.+)|([0-9]+\.[0-9]+\.[0-9]+))"'
replace: '"version": "${{ env.NEW_RELEASE }}-pre.${{ env.NEW_BUMP }}"'

- name: Commit updates
env:
LATEST_VERSION: ${{ steps.release-drafter.outputs.name }}-pre.${{ env.NEW_BUMP }}
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/afids-validator_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ jobs:
find: 'v(?:([0-9]+\.[0-9]+\.[0-9]+.+)|([0-9]+\.[0-9]+\.[0-9]+))'
replace: '${{ steps.release-drafter.outputs.name }}"'

- name: Update package.json version
uses: jacobtomlinson/gha-find-replace@master
with:
include: "package.json"
find: 'v(?:([0-9]+\.[0-9]+\.[0-9]+.+)|([0-9]+\.[0-9]+\.[0-9]+))'
replace: '${{ steps.release-drafter.outputs.name }}"'

- name: Commit updates
env:
LATEST_VERSION: ${{ steps.release-drafter.outputs.name }}
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ __pycache__/
.vscode/
.jekyll-cache/
_site/
dist/

# Files
*.pyc
Expand Down
52 changes: 0 additions & 52 deletions afidsvalidator/static/css/afids_custom.css

This file was deleted.

2 changes: 2 additions & 0 deletions afidsvalidator/static/lib/afidsvalidator-react/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist
node_modules
14 changes: 14 additions & 0 deletions afidsvalidator/static/lib/afidsvalidator-react/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
]
}
2 changes: 2 additions & 0 deletions afidsvalidator/static/lib/afidsvalidator-react/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
.parcel-cache/
6 changes: 6 additions & 0 deletions afidsvalidator/static/lib/afidsvalidator-react/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"semi": true,
"trailingComma": "none",
"singleQuote": true,
"printWidth": 79
}
File renamed without changes
2 changes: 2 additions & 0 deletions afidsvalidator/static/lib/afidsvalidator-react/dist/index.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading

0 comments on commit 7dac1ca

Please sign in to comment.