Skip to content

Commit

Permalink
fix: start default in memory without sync (#185)
Browse files Browse the repository at this point in the history
* fix: start default in memory without sync

Signed-off-by: Wouter Termont <[email protected]>

* fix: remove local env var

Signed-off-by: Wouter Termont <[email protected]>

* chore: merge from develop

* fix: restore demo files in lib

* fix: start default in mem
  • Loading branch information
woutermont authored Jan 28, 2022
1 parent bd55fc3 commit 9c6688c
Show file tree
Hide file tree
Showing 25 changed files with 1,095 additions and 154 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@
<meta charset="utf-8">
<title>SemCom Components</title>
<base href="/">
<link href="./styles.css" rel="stylesheet">
<link href="./demo.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
</head>
<body>

<!-- just a placeholder for serving in develop -->
<script>window.global = window;</script>
<script type="module" src="./index.ts"></script>
<script type="module" src="./demo.ts"></script>

<profile-component entry="./data/profile.ttl"></profile-component>
<profile-contact-component entry="./data/profile.ttl"></profile-contact-component>
<profile-name-component entry="./data/profile.ttl"></profile-name-component>
<profile-payslip-component entry="./data/profile.ttl"></profile-payslip-component>
<payslip-component entry="./data/payslips.ttl"></payslip-component>
<profile-component entry="./demo/profile.ttl"></profile-component>
<profile-contact-component entry="./demo/profile.ttl"></profile-contact-component>
<profile-name-component entry="./demo/profile.ttl"></profile-name-component>
<profile-payslip-component entry="./demo/profile.ttl"></profile-payslip-component>
<payslip-component entry="./demo/payslips.ttl"></payslip-component>
<input-component></input-component>
<document-component></document-component>
<barcode-component entry="./data/barcodes.ttl#barcode-mock-1"></barcode-component>
<barcode-component entry="./demo/barcodes.ttl#barcode-mock-1"></barcode-component>
<credential-component></credential-component>

</body>
Expand Down
14 changes: 7 additions & 7 deletions packages/semcom-components/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/semcom-components/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { defineConfig } from 'vite'
export default ({ command, mode }) => {
if (command === 'serve') {
return defineConfig({
root: 'demo',
root: 'lib',
build: {
target: 'es2015',
outDir: '../dist'
Expand Down
Loading

0 comments on commit 9c6688c

Please sign in to comment.