Skip to content

Commit

Permalink
Merge pull request #30 from zazuko/sketch-vueflow
Browse files Browse the repository at this point in the history
Sketch vueflow
  • Loading branch information
BenjaminHofstetter authored Nov 29, 2024
2 parents b2ccd95 + 60e1374 commit 6b810d6
Show file tree
Hide file tree
Showing 115 changed files with 14,500 additions and 27,155 deletions.
4 changes: 0 additions & 4 deletions .browserslistrc

This file was deleted.

5 changes: 0 additions & 5 deletions .editorconfig

This file was deleted.

14 changes: 14 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
root: true,
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript'
],
parserOptions: {
ecmaVersion: 'latest'
}
}
25 changes: 0 additions & 25 deletions .eslintrc.js

This file was deleted.

29 changes: 18 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
.DS_Store
node_modules
/dist
*.tgz

# local env files
.env.local
.env.*.local

# Log files
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
.DS_Store
dist
dist-ssr
coverage
*.local

/cypress/videos/
/cypress/screenshots/

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

*.tsbuildinfo
5 changes: 0 additions & 5 deletions babel.config.js

This file was deleted.

1 change: 1 addition & 0 deletions env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/// <reference types="vite/client" />
21 changes: 21 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zazuko RDF Sketch</title>
</head>

<body>
<div id="app"></div>

<script type="module" src="/src/main.ts"></script>
</body>

</html>
19 changes: 0 additions & 19 deletions jsconfig.json

This file was deleted.

Loading

0 comments on commit 6b810d6

Please sign in to comment.