-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* setup(*): use different file for different build (web, desktop) * setup(monorepo): use monorepo to host both web and desktop repository * setup(monorepo): moved `web` and `desktop` to `apps`
- Loading branch information
1 parent
672db46
commit 55d202a
Showing
608 changed files
with
7,440 additions
and
1,376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pt-ci | ||
name: periotable-ci | ||
|
||
on: [push, pull_request] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,7 @@ | ||
node_modules | ||
|
||
# next.js | ||
.next | ||
out | ||
next-env.d.ts | ||
|
||
# generated | ||
script/**/*.generated.* | ||
script/**/*.webp | ||
.prettierrc | ||
public/service-worker.js* | ||
public/workbox-*.js* | ||
src/web/generated/*.ts | ||
env.d.ts | ||
|
||
# test | ||
test/snapshot/generated*.test.ts | ||
|
||
# production | ||
build | ||
dist | ||
cache | ||
|
||
# local env files | ||
.env | ||
.env.production | ||
|
||
# vercel | ||
.vercel | ||
|
||
# sitemap | ||
public/sitemap*.xml | ||
public/site.webmanifest | ||
public/manifest.json | ||
public/robots.txt | ||
# prettier | ||
.prettierrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
node_modules | ||
|
||
# generated | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
node_modules | ||
|
||
# generated | ||
build | ||
src-tauri/target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
.PHONY: build test | ||
MAKEFLAGS += --silent | ||
|
||
build-production: | ||
pnpm tauri build | ||
|
||
# build | ||
build-desktop: | ||
rm -rf build &&\ | ||
cd ../web &&\ | ||
make build-desktop &&\ | ||
mv desktop ../desktop/build | ||
|
||
# format | ||
format: | ||
pnpm prettier --$(type) . | ||
|
||
format-check: | ||
make format type=check | ||
|
||
format-write: | ||
make format type=write | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "@periotable/desktop", | ||
"version": "0.0.0", | ||
"author": "PoolOfDeath20", | ||
"private": true, | ||
"license": "GPL", | ||
"description": "A UI/UX friendly desktop application to learn more about Modern Periodic Table of Elements", | ||
"devDependencies": { | ||
"@tauri-apps/cli": "^1.5.7" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Generated by Cargo | ||
# will have compiled files and executables | ||
/target/ | ||
WixTools |
Oops, something went wrong.