Skip to content
Open
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

13 changes: 0 additions & 13 deletions .eslintrc.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v3.28.12
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
run: |
cd website
npm install
gulp build
npm run build

- name: Create Directory Stucture
- name: Create Directory Structure
run: |
mkdir tmp
mv website/sitemap.xml tmp/
Expand All @@ -39,7 +39,7 @@ jobs:
echo "These files are ready to be moved onto the production web server:"
ls

# Package the artefacts using actions/upload-pages-artifact
# Package the artifacts using actions/upload-pages-artifact
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
- name: Test
run: |
npm install
npm run test
npm run lint
29 changes: 23 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
npm-debug.log
.idea
dist
*.html
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

sitemap.xml
.DS_Store*
.java-version
.vscode/
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ npm start

**IMPORTANT:** Node will run source code and all that is needed inside container. In order to see website and changes you are doing point browser to http://localhost:3000 and for UI http://localhost:3001

Modify code in your preferd IDE outside docker, it will be picked up automaticly
Modify code in your preferred IDE outside docker, it will be picked up automatically

---

Expand Down
30 changes: 30 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import { FlatCompat } from '@eslint/eslintrc';
import js from '@eslint/js';
import { fileURLToPath } from 'url';
import { dirname } from 'path';

const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

const compat = new FlatCompat({
baseDirectory: __dirname,
});

export default [
{
ignores: ['node_modules/**', 'dist/**'], // Add ignored paths here
},
js.configs.recommended,
{
ignores: ['node_modules/**'],
},
...compat.config({
env: {
browser: true,
es2021: true,
},
rules: {
// Add custom rules here if needed
},
}),
];
230 changes: 0 additions & 230 deletions gulpfile.js

This file was deleted.

1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!-- This is just here so Vite has something to start from -->
4 changes: 2 additions & 2 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build]
publish = ""
command = "npm install; gulp build; npm run assemble"
publish = "dist"
command = "npm install; npm run build"

[build.environment]
NODE_VERSION = "20"
Loading