Skip to content

Commit

Permalink
Work
Browse files Browse the repository at this point in the history
  • Loading branch information
qligier committed Oct 17, 2024
1 parent 198ddb9 commit bef3433
Show file tree
Hide file tree
Showing 40 changed files with 622 additions and 213 deletions.
5 changes: 3 additions & 2 deletions NOTICE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
The flag icons are from https://flagicons.lipis.dev/ and are licensed under the MIT license.
The flag icons are from https://flagicons.lipis.dev/ (MIT license).
Other icons are from https://tabler.io/icons (MIT license).

The color scheme is from https://www.s-ings.com/scratchpad/oklch-smooth/ and is licensed under an unknown license.
The color scheme is from https://yeun.github.io/open-color/ (MIT license).
2 changes: 1 addition & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ fs.mkdirSync('./dist');
const npmCommand = /^win/.test(process.platform) ? 'npm.cmd' : 'npm';
const cssBuildPromise = spawnProcess(npmCommand, ['run', 'build-css']);
const jsBuildPromise = spawnProcess(npmCommand, ['run', 'build-js']);
const jsCopyStatic = spawnProcess(npmCommand, ['run', 'copy-static']);
const jsCopyStatic = spawnProcess(npmCommand, ['run', 'build-static']);

Promise.all([cssBuildPromise, jsBuildPromise, jsCopyStatic]).then(() => {});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"build": "node ./build.js",
"build-js": "tsc -noEmit && esbuild src/ts/index.ts --bundle --minify --tree-shaking=true --target=es2022 --outfile=dist/app.js",
"build-css": "sass --no-source-map --style=compressed --color src/scss/index.scss dist/style.css",
"copy-static": "cp -R ./static/* ./dist"
"build-static": "cp -R ./static/* ./dist"
},
"author": {
"name": "Quentin Ligier",
Expand Down
Loading

0 comments on commit bef3433

Please sign in to comment.