Skip to content

Commit 1e207f3

Browse files
committed
Merging two repos
2 parents e26015d + 7cc2cd3 commit 1e207f3

Some content is hidden

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

79 files changed

+4955
-1
lines changed

.github/workflows/ci.yml renamed to .github/workflows/core.yml

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
- "**/.gitignore"
1515
- "**/resources/**"
1616
- "**/.github/ISSUE_TEMPLATE/**"
17+
- "**/website/**"
1718

1819
jobs:
1920
build:
@@ -44,3 +45,4 @@ jobs:
4445

4546
- name: Run Tests
4647
run: cargo test
48+

.github/workflows/website.yml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
paths:
8+
- "**/website/**"
9+
pull_request:
10+
branches:
11+
- master
12+
paths:
13+
- "**/website/**"
14+
15+
jobs:
16+
build:
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- name: Checkout repository
21+
uses: actions/checkout@v2
22+
23+
- name: Set up Node.js
24+
uses: actions/setup-node@v4
25+
with:
26+
node-version: "18"
27+
28+
- name: Install dependencies
29+
run: npm install
30+
31+
- name: Build SvelteKit application
32+
run: npm run build
33+
34+
- name: Archive build artifacts
35+
uses: actions/upload-artifact@v2
36+
with:
37+
name: build-artifacts
38+
path: build

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Cargo.lock
103103
*.pdb
104104

105105
### rust-analyzer ###
106-
# Can be generated by other build systems other than cargo (ex: bazelbuild/rust_rules)
106+
# Can be generated by other build systems other than cargo (ex: bazelbuild/rust_rules)
107107
rust-project.json
108108

109109

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -364,6 +364,7 @@ being awesome contributors to this project. **We'd like to take a moment to reco
364364
[<img src="https://github.com/appelskrutt34.png?size=72" alt="appelskrutt34" width="72">](https://github.com/appelskrutt34)
365365
[<img src="https://avatars.githubusercontent.com/u/23294573?v=4&size=72">](https://github.com/ahsentekd)
366366
[<img src="https://avatars.githubusercontent.com/u/167654108?v=4&size=72">](https://github.com/chinmer)
367+
[<img src="https://github.com/SvMak.png?size=72" alt="SvMak" width="72">](https://github.com/SvMak)
367368

368369
## License
369370

website/.eslintignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
10+
# Ignore files for PNPM, NPM and YARN
11+
pnpm-lock.yaml
12+
package-lock.json
13+
yarn.lock

website/.eslintrc.cjs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/** @type { import("eslint").Linter.FlatConfig } */
2+
module.exports = {
3+
root: true,
4+
extends: ['eslint:recommended', 'plugin:svelte/recommended'],
5+
parserOptions: {
6+
sourceType: 'module',
7+
ecmaVersion: 2020,
8+
extraFileExtensions: ['.svelte']
9+
},
10+
env: {
11+
browser: true,
12+
es2017: true,
13+
node: true
14+
}
15+
};

website/.gitkeep

Whitespace-only changes.

website/.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

website/jsconfig.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"extends": "./.svelte-kit/tsconfig.json",
3+
"compilerOptions": {
4+
"allowJs": true,
5+
"checkJs": false,
6+
"esModuleInterop": true,
7+
"forceConsistentCasingInFileNames": true,
8+
"resolveJsonModule": true,
9+
"skipLibCheck": true,
10+
"sourceMap": true,
11+
"strict": true,
12+
"moduleResolution": "bundler"
13+
}
14+
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias and https://kit.svelte.dev/docs/configuration#files
15+
//
16+
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
17+
// from the referenced tsconfig.json - TypeScript does not merge them in
18+
}

0 commit comments

Comments
 (0)