Deployed the page to Github Pages.

This commit is contained in:
Batuhan Berk Başoğlu 2024-11-03 21:30:09 -05:00
parent 1d79754e93
commit 2c89899458
Signed by: batuhan-basoglu
SSH key fingerprint: SHA256:kEsnuHX+qbwhxSAXPUQ4ox535wFHu/hIRaa53FzxRpo
62797 changed files with 6551425 additions and 15279 deletions

13
node_modules/@angular/fire/schematics/add/index.js generated vendored Normal file
View file

@ -0,0 +1,13 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ngAdd = void 0;
const common_1 = require("../common");
const versions_json_1 = require("../versions.json");
const tasks_1 = require("@angular-devkit/schematics/tasks");
const ngAdd = (options) => (tree, context) => {
common_1.addDependencies(tree, versions_json_1.peerDependencies, context);
const npmInstallTaskId = context.addTask(new tasks_1.NodePackageInstallTask());
context.addTask(new tasks_1.RunSchematicTask('ng-add-setup-project', options), [npmInstallTaskId]);
return tree;
};
exports.ngAdd = ngAdd;

16
node_modules/@angular/fire/schematics/add/schema.json generated vendored Normal file
View file

@ -0,0 +1,16 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "angular-fire-ng-add",
"title": "AngularFire ng-add",
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "The name of the project.",
"$default": {
"$source": "projectName"
}
}
},
"required": []
}