Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update app stack #57

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all 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
3 changes: 2 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ root = true
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true

Expand All @@ -14,3 +14,4 @@ trim_trailing_whitespace = false

[*.{json,yml}]
indent_size = 2
indent_style = space
9 changes: 0 additions & 9 deletions .eslintrc.js

This file was deleted.

15 changes: 11 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
# DEPENDENCIES ========================================================
## DEPENDENCIES ######################################################
node_modules

# LOGS ================================================================
## LOGS ##############################################################
*.log

# GENERATED ===========================================================
## GENERATED #########################################################
.cache
.nuxt
src/.temp
coverage
dist
sw.*

# SECRETS =============================================================
## SECRETS ###########################################################
.env
.env.*

## CONFIGURED BY ZAZEN ###############################################
.eslintrc.js
prettier.config.js
tsconfig.json
########################################### END CONFIGURED BY ZAZEN ##
6 changes: 0 additions & 6 deletions .stylelintrc.js

This file was deleted.

3 changes: 0 additions & 3 deletions assets/tailwind.css

This file was deleted.

16 changes: 0 additions & 16 deletions babel.config.js

This file was deleted.

35 changes: 0 additions & 35 deletions components/Logo.vue

This file was deleted.

13 changes: 0 additions & 13 deletions components/RollControl.vue

This file was deleted.

31 changes: 0 additions & 31 deletions components/content/Heading.vue

This file was deleted.

25 changes: 0 additions & 25 deletions components/content/TextElement.vue

This file was deleted.

46 changes: 0 additions & 46 deletions components/layout/Box.js

This file was deleted.

7 changes: 0 additions & 7 deletions components/layout/Column.vue

This file was deleted.

43 changes: 0 additions & 43 deletions components/layout/Columns.vue

This file was deleted.

9 changes: 0 additions & 9 deletions components/layout/LayoutDivider.vue

This file was deleted.

55 changes: 0 additions & 55 deletions components/layout/LayoutStack.vue

This file was deleted.

28 changes: 0 additions & 28 deletions hooks/useFlexAlign.js

This file was deleted.

16 changes: 16 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, viewport-fit=cover, initial-scale=1" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/icon-192.png" />
<meta name="msapplication-TileColor" content="#393e41" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
</head>
<body class="bg-grey-900 text-white font-sans">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading