Deployed the page to Github Pages.
This commit is contained in:
parent
1d79754e93
commit
2c89899458
62797 changed files with 6551425 additions and 15279 deletions
27
node_modules/@schematics/angular/workspace/files/README.md.template
generated
vendored
Executable file
27
node_modules/@schematics/angular/workspace/files/README.md.template
generated
vendored
Executable file
|
@ -0,0 +1,27 @@
|
|||
# <%= utils.classify(name) %>
|
||||
|
||||
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version <%= version %>.
|
||||
|
||||
## Development server
|
||||
|
||||
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
|
||||
|
||||
## Code scaffolding
|
||||
|
||||
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
|
||||
|
||||
## Build
|
||||
|
||||
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
|
||||
|
||||
## Running unit tests
|
||||
|
||||
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
||||
|
||||
## Running end-to-end tests
|
||||
|
||||
Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
|
||||
|
||||
## Further help
|
||||
|
||||
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
|
17
node_modules/@schematics/angular/workspace/files/__dot__editorconfig.template
generated
vendored
Executable file
17
node_modules/@schematics/angular/workspace/files/__dot__editorconfig.template
generated
vendored
Executable file
|
@ -0,0 +1,17 @@
|
|||
# Editor configuration, see https://editorconfig.org
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.ts]
|
||||
quote_type = single
|
||||
ij_typescript_use_double_quotes = false
|
||||
|
||||
[*.md]
|
||||
max_line_length = off
|
||||
trim_trailing_whitespace = false
|
42
node_modules/@schematics/angular/workspace/files/__dot__gitignore.template
generated
vendored
Executable file
42
node_modules/@schematics/angular/workspace/files/__dot__gitignore.template
generated
vendored
Executable file
|
@ -0,0 +1,42 @@
|
|||
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
|
||||
|
||||
# Compiled output
|
||||
/dist
|
||||
/tmp
|
||||
/out-tsc
|
||||
/bazel-out
|
||||
|
||||
# Node
|
||||
/node_modules
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
|
||||
# IDEs and editors
|
||||
.idea/
|
||||
.project
|
||||
.classpath
|
||||
.c9/
|
||||
*.launch
|
||||
.settings/
|
||||
*.sublime-workspace
|
||||
|
||||
# Visual Studio Code
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
.history/*
|
||||
|
||||
# Miscellaneous
|
||||
/.angular/cache
|
||||
.sass-cache/
|
||||
/connect.lock
|
||||
/coverage
|
||||
/libpeerconnection.log
|
||||
testem.log
|
||||
/typings
|
||||
|
||||
# System files
|
||||
.DS_Store
|
||||
Thumbs.db
|
4
node_modules/@schematics/angular/workspace/files/__dot__vscode/extensions.json.template
generated
vendored
Executable file
4
node_modules/@schematics/angular/workspace/files/__dot__vscode/extensions.json.template
generated
vendored
Executable file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
|
||||
"recommendations": ["angular.ng-template"]
|
||||
}
|
20
node_modules/@schematics/angular/workspace/files/__dot__vscode/launch.json.template
generated
vendored
Executable file
20
node_modules/@schematics/angular/workspace/files/__dot__vscode/launch.json.template
generated
vendored
Executable file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "ng serve",
|
||||
"type": "chrome",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "npm: start",
|
||||
"url": "http://localhost:4200/"
|
||||
}<% if (!minimal) { %>,
|
||||
{
|
||||
"name": "ng test",
|
||||
"type": "chrome",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "npm: test",
|
||||
"url": "http://localhost:9876/debug.html"
|
||||
}<% } %>
|
||||
]
|
||||
}
|
42
node_modules/@schematics/angular/workspace/files/__dot__vscode/tasks.json.template
generated
vendored
Executable file
42
node_modules/@schematics/angular/workspace/files/__dot__vscode/tasks.json.template
generated
vendored
Executable file
|
@ -0,0 +1,42 @@
|
|||
{
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "start",
|
||||
"isBackground": true,
|
||||
"problemMatcher": {
|
||||
"owner": "typescript",
|
||||
"pattern": "$tsc",
|
||||
"background": {
|
||||
"activeOnStart": true,
|
||||
"beginsPattern": {
|
||||
"regexp": "(.*?)"
|
||||
},
|
||||
"endsPattern": {
|
||||
"regexp": "bundle generation complete"
|
||||
}
|
||||
}
|
||||
}
|
||||
}<% if (!minimal) { %>,
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "test",
|
||||
"isBackground": true,
|
||||
"problemMatcher": {
|
||||
"owner": "typescript",
|
||||
"pattern": "$tsc",
|
||||
"background": {
|
||||
"activeOnStart": true,
|
||||
"beginsPattern": {
|
||||
"regexp": "(.*?)"
|
||||
},
|
||||
"endsPattern": {
|
||||
"regexp": "bundle generation complete"
|
||||
}
|
||||
}
|
||||
}
|
||||
}<% } %>
|
||||
]
|
||||
}
|
10
node_modules/@schematics/angular/workspace/files/angular.json.template
generated
vendored
Executable file
10
node_modules/@schematics/angular/workspace/files/angular.json.template
generated
vendored
Executable file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
||||
"version": 1,<% if (packageManager) { %>
|
||||
"cli": {
|
||||
"packageManager": "<%= packageManager %>"
|
||||
},<% } %>
|
||||
"newProjectRoot": "<%= newProjectRoot %>",
|
||||
"projects": {
|
||||
}
|
||||
}
|
37
node_modules/@schematics/angular/workspace/files/package.json.template
generated
vendored
Executable file
37
node_modules/@schematics/angular/workspace/files/package.json.template
generated
vendored
Executable file
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"name": "<%= utils.dasherize(name) %>",
|
||||
"version": "0.0.0",
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng serve",
|
||||
"build": "ng build",
|
||||
"watch": "ng build --watch --configuration development"<% if (!minimal) { %>,
|
||||
"test": "ng test"<% } %>
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "<%= latestVersions.Angular %>",
|
||||
"@angular/common": "<%= latestVersions.Angular %>",
|
||||
"@angular/compiler": "<%= latestVersions.Angular %>",
|
||||
"@angular/core": "<%= latestVersions.Angular %>",
|
||||
"@angular/forms": "<%= latestVersions.Angular %>",
|
||||
"@angular/platform-browser": "<%= latestVersions.Angular %>",
|
||||
"@angular/platform-browser-dynamic": "<%= latestVersions.Angular %>",
|
||||
"@angular/router": "<%= latestVersions.Angular %>",
|
||||
"rxjs": "<%= latestVersions['rxjs'] %>",
|
||||
"tslib": "<%= latestVersions['tslib'] %>",
|
||||
"zone.js": "<%= latestVersions['zone.js'] %>"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular/cli": "<%= '^' + version %>",
|
||||
"@angular/compiler-cli": "<%= latestVersions.Angular %>",<% if (!minimal) { %>
|
||||
"@types/jasmine": "<%= latestVersions['@types/jasmine'] %>",
|
||||
"jasmine-core": "<%= latestVersions['jasmine-core'] %>",
|
||||
"karma": "<%= latestVersions['karma'] %>",
|
||||
"karma-chrome-launcher": "<%= latestVersions['karma-chrome-launcher'] %>",
|
||||
"karma-coverage": "<%= latestVersions['karma-coverage'] %>",
|
||||
"karma-jasmine": "<%= latestVersions['karma-jasmine'] %>",
|
||||
"karma-jasmine-html-reporter": "<%= latestVersions['karma-jasmine-html-reporter'] %>",<% } %>
|
||||
"typescript": "<%= latestVersions['typescript'] %>"
|
||||
}
|
||||
}
|
33
node_modules/@schematics/angular/workspace/files/tsconfig.json.template
generated
vendored
Executable file
33
node_modules/@schematics/angular/workspace/files/tsconfig.json.template
generated
vendored
Executable file
|
@ -0,0 +1,33 @@
|
|||
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
||||
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
||||
{
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist/out-tsc",<% if (strict) { %>
|
||||
"strict": true,
|
||||
"noImplicitOverride": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true,<% } %>
|
||||
"skipLibCheck": true,
|
||||
"isolatedModules": true,
|
||||
"esModuleInterop": true,
|
||||
"sourceMap": true,
|
||||
"declaration": false,
|
||||
"experimentalDecorators": true,
|
||||
"moduleResolution": "bundler",
|
||||
"importHelpers": true,
|
||||
"target": "ES2022",
|
||||
"module": "ES2022",
|
||||
"lib": [
|
||||
"ES2022",
|
||||
"dom"
|
||||
]
|
||||
},
|
||||
"angularCompilerOptions": {
|
||||
"enableI18nLegacyMessageIdFormat": false<% if (strict) { %>,
|
||||
"strictInjectionParameters": true,
|
||||
"strictInputAccessModifiers": true,
|
||||
"strictTemplates": true<% } %>
|
||||
}
|
||||
}
|
10
node_modules/@schematics/angular/workspace/index.d.ts
generated
vendored
Executable file
10
node_modules/@schematics/angular/workspace/index.d.ts
generated
vendored
Executable file
|
@ -0,0 +1,10 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright Google LLC All Rights Reserved.
|
||||
*
|
||||
* Use of this source code is governed by an MIT-style license that can be
|
||||
* found in the LICENSE file at https://angular.dev/license
|
||||
*/
|
||||
import { Rule } from '@angular-devkit/schematics';
|
||||
import { Schema as WorkspaceOptions } from './schema';
|
||||
export default function (options: WorkspaceOptions): Rule;
|
23
node_modules/@schematics/angular/workspace/index.js
generated
vendored
Executable file
23
node_modules/@schematics/angular/workspace/index.js
generated
vendored
Executable file
|
@ -0,0 +1,23 @@
|
|||
"use strict";
|
||||
/**
|
||||
* @license
|
||||
* Copyright Google LLC All Rights Reserved.
|
||||
*
|
||||
* Use of this source code is governed by an MIT-style license that can be
|
||||
* found in the LICENSE file at https://angular.dev/license
|
||||
*/
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = default_1;
|
||||
const schematics_1 = require("@angular-devkit/schematics");
|
||||
const latest_versions_1 = require("../utility/latest-versions");
|
||||
function default_1(options) {
|
||||
return (0, schematics_1.mergeWith)((0, schematics_1.apply)((0, schematics_1.url)('./files'), [
|
||||
options.minimal ? (0, schematics_1.filter)((path) => !path.endsWith('editorconfig.template')) : (0, schematics_1.noop)(),
|
||||
(0, schematics_1.applyTemplates)({
|
||||
utils: schematics_1.strings,
|
||||
...options,
|
||||
'dot': '.',
|
||||
latestVersions: latest_versions_1.latestVersions,
|
||||
}),
|
||||
]));
|
||||
}
|
42
node_modules/@schematics/angular/workspace/schema.d.ts
generated
vendored
Executable file
42
node_modules/@schematics/angular/workspace/schema.d.ts
generated
vendored
Executable file
|
@ -0,0 +1,42 @@
|
|||
/**
|
||||
* Initializes an empty workspace and adds the necessary dependencies required by an Angular
|
||||
* application.
|
||||
*/
|
||||
export interface Schema {
|
||||
/**
|
||||
* Create a workspace without any testing frameworks. (Use for learning purposes only.)
|
||||
*/
|
||||
minimal?: boolean;
|
||||
/**
|
||||
* The name of the workspace.
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* The path where new projects will be created.
|
||||
*/
|
||||
newProjectRoot?: string;
|
||||
/**
|
||||
* The package manager used to install dependencies.
|
||||
*/
|
||||
packageManager?: PackageManager;
|
||||
/**
|
||||
* Create a workspace with stricter type checking options. This setting helps improve
|
||||
* maintainability and catch bugs ahead of time. For more information, see
|
||||
* https://angular.dev/tools/cli/template-typecheck#strict-mode
|
||||
*/
|
||||
strict?: boolean;
|
||||
/**
|
||||
* The version of the Angular CLI to use.
|
||||
*/
|
||||
version: string;
|
||||
}
|
||||
/**
|
||||
* The package manager used to install dependencies.
|
||||
*/
|
||||
export declare enum PackageManager {
|
||||
Bun = "bun",
|
||||
Cnpm = "cnpm",
|
||||
Npm = "npm",
|
||||
Pnpm = "pnpm",
|
||||
Yarn = "yarn"
|
||||
}
|
16
node_modules/@schematics/angular/workspace/schema.js
generated
vendored
Executable file
16
node_modules/@schematics/angular/workspace/schema.js
generated
vendored
Executable file
|
@ -0,0 +1,16 @@
|
|||
"use strict";
|
||||
// THIS FILE IS AUTOMATICALLY GENERATED. TO UPDATE THIS FILE YOU NEED TO CHANGE THE
|
||||
// CORRESPONDING JSON SCHEMA FILE, THEN RUN devkit-admin build (or bazel build ...).
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.PackageManager = void 0;
|
||||
/**
|
||||
* The package manager used to install dependencies.
|
||||
*/
|
||||
var PackageManager;
|
||||
(function (PackageManager) {
|
||||
PackageManager["Bun"] = "bun";
|
||||
PackageManager["Cnpm"] = "cnpm";
|
||||
PackageManager["Npm"] = "npm";
|
||||
PackageManager["Pnpm"] = "pnpm";
|
||||
PackageManager["Yarn"] = "yarn";
|
||||
})(PackageManager || (exports.PackageManager = PackageManager = {}));
|
47
node_modules/@schematics/angular/workspace/schema.json
generated
vendored
Executable file
47
node_modules/@schematics/angular/workspace/schema.json
generated
vendored
Executable file
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "SchematicsAngularWorkspace",
|
||||
"title": "Angular Workspace Options Schema",
|
||||
"description": "Initializes an empty workspace and adds the necessary dependencies required by an Angular application.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"name": {
|
||||
"description": "The name of the workspace.",
|
||||
"type": "string",
|
||||
"$default": {
|
||||
"$source": "argv",
|
||||
"index": 0
|
||||
}
|
||||
},
|
||||
"newProjectRoot": {
|
||||
"description": "The path where new projects will be created.",
|
||||
"type": "string",
|
||||
"visible": "false"
|
||||
},
|
||||
"version": {
|
||||
"type": "string",
|
||||
"description": "The version of the Angular CLI to use.",
|
||||
"visible": false,
|
||||
"$default": {
|
||||
"$source": "ng-cli-version"
|
||||
}
|
||||
},
|
||||
"minimal": {
|
||||
"description": "Create a workspace without any testing frameworks. (Use for learning purposes only.)",
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"strict": {
|
||||
"description": "Create a workspace with stricter type checking options. This setting helps improve maintainability and catch bugs ahead of time. For more information, see https://angular.dev/tools/cli/template-typecheck#strict-mode",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"packageManager": {
|
||||
"description": "The package manager used to install dependencies.",
|
||||
"type": "string",
|
||||
"enum": ["npm", "yarn", "pnpm", "cnpm", "bun"]
|
||||
}
|
||||
},
|
||||
"required": ["name", "version"]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue