Skip to content

Commit 3081cd5

Browse files
committed
feat(site): v1 of the aurelia site
1 parent f8b4afe commit 3081cd5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+8492
-0
lines changed

.hugo_build.lock

Whitespace-only changes.

archetypes/default.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
date = '{{ .Date }}'
3+
draft = true
4+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
5+
+++

aurelia-apps/.gitignore

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
2+
# You may want to customise this file depending on your Operating System
3+
# and the editor that you use.
4+
#
5+
# We recommend that you use a Global Gitignore for files that are not related
6+
# to the project. (https://help.github.com/articles/ignoring-files/#create-a-global-gitignore)
7+
8+
# OS
9+
#
10+
# Ref: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
11+
# Ref: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
12+
# Ref: https://github.com/github/gitignore/blob/master/Global/Linux.gitignore
13+
.DS_STORE
14+
Thumbs.db
15+
16+
# Editors
17+
#
18+
# Ref: https://github.com/github/gitignore/blob/master/Global
19+
# Ref: https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
20+
# Ref: https://github.com/github/gitignore/blob/master/Global/VisualStudioCode.gitignore
21+
.idea
22+
.chrome
23+
/*.log
24+
.vscode/*
25+
!.vscode/settings.json
26+
!.vscode/tasks.json
27+
!.vscode/launch.json
28+
!.vscode/extensions.json
29+
30+
# Dependencies
31+
node_modules
32+
33+
# Compiled files
34+
/dist
35+
/.nyc_output
36+
/coverage

aurelia-apps/.npmrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# for pnpm, use flat node_modules
2+
shamefully-hoist=true
3+
auto-install-peers=true

aurelia-apps/.stylelintrc.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"extends": [
3+
"stylelint-config-standard"
4+
]
5+
}

aurelia-apps/.yarnrc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# For compatibility in yarn 2+
2+
nodeLinker: node-modules

aurelia-apps/README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# aurelia-apps
2+
3+
This project is bootstrapped by [aurelia/new](https://github.com/aurelia/new).
4+
5+
## Start dev web server
6+
7+
npm start
8+
9+
## Build the app in production mode
10+
11+
npm run build
12+
13+

aurelia-apps/eslint.config.mjs

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import eslint from "@eslint/js";
2+
import tseslint from 'typescript-eslint';
3+
import tsParser from "@typescript-eslint/parser";
4+
import globals from "globals";
5+
6+
export default [
7+
eslint.configs.recommended,
8+
...tseslint.configs.recommended,
9+
{
10+
files: ["**/*.ts"],
11+
12+
languageOptions: {
13+
globals: {
14+
...globals.builtin,
15+
...globals.nodeBuiltin,
16+
...globals.browser,
17+
...globals.node,
18+
},
19+
20+
parser: tsParser,
21+
ecmaVersion: 2019,
22+
sourceType: "module",
23+
},
24+
}
25+
];

aurelia-apps/favicon.ico

14.7 KB
Binary file not shown.

aurelia-apps/index.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>Aurelia</title>
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<script type="module" src="/src/main.ts"></script>
9+
<base href="/">
10+
</head>
11+
12+
<body>
13+
<my-app></my-app>
14+
</body>
15+
16+
</html>
17+

0 commit comments

Comments
 (0)