Commit fe4390c0 authored by Romain DELEAU's avatar Romain DELEAU

change application name to RLG Maker

parent c58576fd
# RLGTool
# RLGMaker
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.0.5.
......
......@@ -3,7 +3,7 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"RLGTool": {
"RLGMaker": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
......@@ -17,7 +17,7 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/rlgtool",
"outputPath": "dist/rlgmaker",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
......@@ -70,10 +70,10 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "RLGTool:build:production"
"browserTarget": "RLGMaker:build:production"
},
"development": {
"browserTarget": "RLGTool:build:development"
"browserTarget": "RLGMaker:build:development"
}
},
"defaultConfiguration": "development"
......@@ -81,7 +81,7 @@
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "RLGTool:build"
"browserTarget": "RLGMaker:build"
}
},
"test": {
......
......@@ -25,7 +25,7 @@ module.exports = function (config) {
suppressAll: true // removes the duplicated traces
},
coverageReporter: {
dir: require('path').join(__dirname, './coverage/rlgtool'),
dir: require('path').join(__dirname, './coverage/rlgmaker'),
subdir: '.',
reporters: [
{ type: 'html' },
......
{
"name": "rlgtool",
"name": "rlgmaker",
"version": "0.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "rlgtool",
"name": "rlgmaker",
"version": "0.0.0",
"dependencies": {
"@angular/animations": "^14.0.0",
......
{
"name": "rlgtool",
"name": "rlgmaker",
"version": "0.0.0",
"scripts": {
"ng": "ng",
......
......@@ -20,16 +20,16 @@ describe('AppComponent', () => {
expect(app).toBeTruthy();
});
it(`should have as title 'RLG Tool'`, () => {
it(`should have as title 'RLG Maker'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app.title).toEqual('RLG Tool');
expect(app.title).toEqual('RLG Maker');
});
it('should render title', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.nativeElement as HTMLElement;
expect(compiled.querySelector('.content span')?.textContent).toContain('RLG Tool app is running!');
expect(compiled.querySelector('.content span')?.textContent).toContain('RLG Maker app is running!');
});
});
......@@ -6,7 +6,7 @@ import { Component } from '@angular/core';
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'RLG Tool';
title = 'RLG Maker';
range(n: number): number[] {
return Array.from(Array(n), (_, i) => i);
......
......@@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>RLG Tool</title>
<title>RLG Maker</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment