Skip to content

Commit

Permalink
feat(site): v1 of the aurelia site
Browse files Browse the repository at this point in the history
  • Loading branch information
Vheissu committed Dec 12, 2024
1 parent f8b4afe commit 3081cd5
Show file tree
Hide file tree
Showing 58 changed files with 8,492 additions and 0 deletions.
Empty file added .hugo_build.lock
Empty file.
5 changes: 5 additions & 0 deletions archetypes/default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
date = '{{ .Date }}'
draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+++
36 changes: 36 additions & 0 deletions aurelia-apps/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

# You may want to customise this file depending on your Operating System
# and the editor that you use.
#
# We recommend that you use a Global Gitignore for files that are not related
# to the project. (https://help.github.com/articles/ignoring-files/#create-a-global-gitignore)

# OS
#
# Ref: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
# Ref: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
# Ref: https://github.com/github/gitignore/blob/master/Global/Linux.gitignore
.DS_STORE
Thumbs.db

# Editors
#
# Ref: https://github.com/github/gitignore/blob/master/Global
# Ref: https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
# Ref: https://github.com/github/gitignore/blob/master/Global/VisualStudioCode.gitignore
.idea
.chrome
/*.log
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# Dependencies
node_modules

# Compiled files
/dist
/.nyc_output
/coverage
3 changes: 3 additions & 0 deletions aurelia-apps/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# for pnpm, use flat node_modules
shamefully-hoist=true
auto-install-peers=true
5 changes: 5 additions & 0 deletions aurelia-apps/.stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": [
"stylelint-config-standard"
]
}
2 changes: 2 additions & 0 deletions aurelia-apps/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# For compatibility in yarn 2+
nodeLinker: node-modules
13 changes: 13 additions & 0 deletions aurelia-apps/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# aurelia-apps

This project is bootstrapped by [aurelia/new](https://github.com/aurelia/new).

## Start dev web server

npm start

## Build the app in production mode

npm run build


25 changes: 25 additions & 0 deletions aurelia-apps/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import eslint from "@eslint/js";
import tseslint from 'typescript-eslint';
import tsParser from "@typescript-eslint/parser";
import globals from "globals";

export default [
eslint.configs.recommended,
...tseslint.configs.recommended,
{
files: ["**/*.ts"],

languageOptions: {
globals: {
...globals.builtin,
...globals.nodeBuiltin,
...globals.browser,
...globals.node,
},

parser: tsParser,
ecmaVersion: 2019,
sourceType: "module",
},
}
];
Binary file added aurelia-apps/favicon.ico
Binary file not shown.
17 changes: 17 additions & 0 deletions aurelia-apps/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<title>Aurelia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="module" src="/src/main.ts"></script>
<base href="/">
</head>

<body>
<my-app></my-app>
</body>

</html>

Loading

0 comments on commit 3081cd5

Please sign in to comment.