Skip to content

Commit 24d74f4

Browse files
committed
building first prototype of a todo app as a test
1 parent b50b3aa commit 24d74f4

File tree

13 files changed

+5328
-0
lines changed

13 files changed

+5328
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ jspm_packages
2929
bower_components
3030
dist
3131

32+
# pre-built binaries for faster startup (downloaded and unzipped)
33+
pre-built-binaries
34+
35+
# test results - no need to include them in our commits
36+
webdriver-ts-results
37+
3238
.idea
3339
.vscode
3440
.DS_Store

frameworks/keyed/fast/.eslintrc.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module.exports = {
2+
root: true,
3+
parser: '@typescript-eslint/parser',
4+
parserOptions: {
5+
ecmaVersion: 2019,
6+
sourceType: 'module',
7+
ecmaFeatures: {
8+
legacyDecorators: true
9+
}
10+
}
11+
};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"arrowParens": "avoid",
3+
"bracketSpacing": true,
4+
"htmlWhitespaceSensitivity": "css",
5+
"insertPragma": false,
6+
"jsxBracketSameLine": false,
7+
"jsxSingleQuote": false,
8+
"printWidth": 120,
9+
"requirePragma": false,
10+
"semi": true,
11+
"singleQuote": true,
12+
"tabWidth": 2,
13+
"trailingComma": "none",
14+
"useTabs": false
15+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
npm WARN deprecated @microsoft/[email protected]: This package is no longer maintained. See what we're doing today at https://github.com/microsoft/fast
2+
npm WARN deprecated @microsoft/[email protected]: This package is no longer maintained. See what we're doing today at https://github.com/microsoft/fast
3+
npm WARN deprecated @microsoft/[email protected]: This package is no longer maintained. See what we're doing today at https://github.com/microsoft/fast
4+
npm WARN deprecated @microsoft/[email protected]: This package is no longer maintained. See what we're doing today at https://github.com/microsoft/fast
5+
npm WARN deprecated @microsoft/[email protected]: This package is no longer maintained. See what we're doing today at https://github.com/microsoft/fast
6+
npm WARN deprecated @microsoft/[email protected]: This package has been deprecated in favor of @fluentui/web-components.

frameworks/keyed/fast/index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Fast</title>
6+
<!-- <link href="/css/currentStyle.css" rel="stylesheet" /> -->
7+
</head>
8+
<body>
9+
<fast-design-system-provider use-defaults>
10+
<todo-item description="1" done="false"></todo-item>
11+
<todo-item description="2" done="false"></todo-item>
12+
<todo-item description="3" done="false"></todo-item>
13+
</fast-design-system-provider>
14+
15+
<script src="dist/bundle.js"></script>
16+
</body>
17+
</html>

0 commit comments

Comments
 (0)