Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 645e39e

Browse filesBrowse files
committed
Add sprint name generator in Angular 9.
1 parent 71ea9d9 commit 645e39e
Copy full SHA for 645e39e
Expand file treeCollapse file tree

25 files changed

+14440
-0
lines changed
Open diff view settings
Collapse file

‎README.md‎

Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ with.
1010

1111
## My JavaScript Demos - I Love JavaScript!
1212

13+
* [Sprint Name Generator In Angular 9.1.3](https://bennadel.github.io/JavaScript-Demos/demos/sprint-name-generator-angular9/dist/)
1314
* [Looking At How Browser Zoom Affects CSS Media Queries And Pixel-Density](https://bennadel.github.io/JavaScript-Demos/demos/zoom-screen-size/)
1415
* [Experimenting With Chained Keyboard Events Using Event Plugins In Angular 9.1.0](https://bennadel.github.io/JavaScript-Demos/demos/chained-keydown-events-angular9/dist/)
1516
* [Using CSS Webkit-Appearance To Style Checkbox ::after Pseudo-Element](https://bennadel.github.io/JavaScript-Demos/demos/webkit-appearance-checkbox/)
Collapse file
+7Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
# Compiled files.
3+
/out-tsc
4+
/tmp
5+
6+
# Build-time dependencies.
7+
/node_modules
Collapse file
+83Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"demo": {
7+
"projectType": "application",
8+
"schematics": {
9+
"@schematics/angular:component": {
10+
"style": "less"
11+
}
12+
},
13+
"root": "",
14+
"sourceRoot": "src",
15+
"prefix": "app",
16+
"architect": {
17+
"build": {
18+
"builder": "@angular-devkit/build-angular:browser",
19+
"options": {
20+
"outputPath": "dist/",
21+
"index": "src/index.html",
22+
"main": "src/main.ts",
23+
"polyfills": "src/polyfills.ts",
24+
"tsConfig": "tsconfig.json",
25+
"assets": [
26+
"src/assets"
27+
],
28+
"styles": [],
29+
"scripts": []
30+
},
31+
"configurations": {
32+
"production": {
33+
"fileReplacements": [
34+
{
35+
"replace": "src/environments/environment.ts",
36+
"with": "src/environments/environment.prod.ts"
37+
}
38+
],
39+
"optimization": true,
40+
"outputHashing": "all",
41+
"sourceMap": false,
42+
"extractCss": true,
43+
"namedChunks": false,
44+
"aot": true,
45+
"extractLicenses": false,
46+
"vendorChunk": false,
47+
"buildOptimizer": true,
48+
"budgets": [
49+
{
50+
"type": "initial",
51+
"maximumWarning": "2mb",
52+
"maximumError": "5mb"
53+
},
54+
{
55+
"type": "anyComponentStyle",
56+
"maximumWarning": "6kb",
57+
"maximumError": "10kb"
58+
}
59+
]
60+
}
61+
}
62+
},
63+
"serve": {
64+
"builder": "@angular-devkit/build-angular:dev-server",
65+
"options": {
66+
"aot": true,
67+
"browserTarget": "demo:build"
68+
},
69+
"configurations": {
70+
"production": {
71+
"optimization": true,
72+
"sourceMap": true
73+
}
74+
}
75+
}
76+
}
77+
}
78+
},
79+
"defaultProject": "demo",
80+
"cli": {
81+
"analytics": false
82+
}
83+
}
Collapse file
+35Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1" />
6+
7+
<title>
8+
Sprint Name Generator In Angular 9.1.3
9+
</title>
10+
11+
<base href="./" />
12+
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
13+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap">
14+
15+
<style type="text/css">
16+
html,
17+
body {
18+
margin: 0px 0px 0px 0px ;
19+
padding: 0px 0px 0px 0px ;
20+
min-height: 100vh ;
21+
}
22+
23+
body {
24+
font-family: "Open Sans", sans-serif ;
25+
font-size: 18px ;
26+
line-height: 25px ;
27+
}
28+
</style>
29+
</head>
30+
<body>
31+
32+
<app-root></app-root>
33+
34+
<script src="runtime-es2015.10ab11eeb5795700cac4.js" type="module"></script><script src="runtime-es5.10ab11eeb5795700cac4.js" nomodule defer></script><script src="polyfills-es5.3e21be3fb90e88929496.js" nomodule defer></script><script src="polyfills-es2015.34441c1a7666fa03b203.js" type="module"></script><script src="main-es2015.3654a9eb75bbc34ba3b9.js" type="module"></script><script src="main-es5.3654a9eb75bbc34ba3b9.js" nomodule defer></script></body>
35+
</html>
Collapse file

‎demos/sprint-name-generator-angular9/dist/main-es2015.3654a9eb75bbc34ba3b9.js‎

Copy file name to clipboardExpand all lines: demos/sprint-name-generator-angular9/dist/main-es2015.3654a9eb75bbc34ba3b9.js
+211Lines changed: 211 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎demos/sprint-name-generator-angular9/dist/main-es5.3654a9eb75bbc34ba3b9.js‎

Copy file name to clipboardExpand all lines: demos/sprint-name-generator-angular9/dist/main-es5.3654a9eb75bbc34ba3b9.js
+198Lines changed: 198 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎demos/sprint-name-generator-angular9/dist/polyfills-es2015.34441c1a7666fa03b203.js‎

Copy file name to clipboardExpand all lines: demos/sprint-name-generator-angular9/dist/polyfills-es2015.34441c1a7666fa03b203.js
+91Lines changed: 91 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎demos/sprint-name-generator-angular9/dist/polyfills-es5.3e21be3fb90e88929496.js‎

Copy file name to clipboardExpand all lines: demos/sprint-name-generator-angular9/dist/polyfills-es5.3e21be3fb90e88929496.js
+141Lines changed: 141 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎demos/sprint-name-generator-angular9/dist/runtime-es2015.10ab11eeb5795700cac4.js‎

Copy file name to clipboardExpand all lines: demos/sprint-name-generator-angular9/dist/runtime-es2015.10ab11eeb5795700cac4.js
+1Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎demos/sprint-name-generator-angular9/dist/runtime-es5.10ab11eeb5795700cac4.js‎

Copy file name to clipboardExpand all lines: demos/sprint-name-generator-angular9/dist/runtime-es5.10ab11eeb5795700cac4.js
+1Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.