Skip to content

Commit

Permalink
[glimmer-next]
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeart committed Jan 6, 2024
1 parent b29ac9f commit 4466d85
Show file tree
Hide file tree
Showing 16 changed files with 7,096 additions and 0 deletions.
24 changes: 24 additions & 0 deletions frameworks/keyed/gxt/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
2 changes: 2 additions & 0 deletions frameworks/keyed/gxt/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package.json
package-lock.json
13 changes: 13 additions & 0 deletions frameworks/keyed/gxt/.prettierrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = {
// ...
plugins: ["prettier-plugin-ember-template-tag"],
overrides: [
{
files: "*.{js,ts,gjs,gts}",
options: {
singleQuote: true,
},
},
// ...
],
};
13 changes: 13 additions & 0 deletions frameworks/keyed/gxt/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GlimmerNext</title>
<link href="/css/currentStyle.css" rel="stylesheet" />
</head>
<body>
<div id="app"></div>
<script type="module" src="dist/main.js"></script>
</body>
</html>
Loading

0 comments on commit 4466d85

Please sign in to comment.