Skip to content

Commit e2635c0

Browse files
authored
Merge pull request #2 from creativetimofficial/fix/solve-names
Fix: solve names
2 parents f723c1a + ad47347 commit e2635c0

File tree

22 files changed

+152
-153
lines changed

22 files changed

+152
-153
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ jobs:
88
uses: roots/[email protected]
99
with:
1010
repo-token: ${{ secrets.GITHUB_TOKEN }}
11-
issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow our rules:\n\n<pre>\n\n\n\nIMPORTANT: Please use the following link to create a new issue:\n\nhttps://www.creative-tim.com/new-issue/tailwind-webapp-angular?ref=twa-new-issue\n\n**If your issue was not created using the app above, it will be closed immediately.**\n\n\n\nLove Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:\n👉 https://www.creative-tim.com/bundles\n👉 https://www.creative-tim.com\n\n\n</pre>\n\n"
11+
issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow our rules:\n\n<pre>\n\n\n\nIMPORTANT: Please use the following link to create a new issue:\n\nhttps://www.creative-tim.com/new-issue/notus-angular?ref=na-new-issue\n\n**If your issue was not created using the app above, it will be closed immediately.**\n\n\n\nLove Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:\n👉 https://www.creative-tim.com/bundles\n👉 https://www.creative-tim.com\n\n\n</pre>\n\n"
1212
issue-pattern: (\#\#\# Version([\S\s.*]*?)\#\#\# Reproduction link([\S\s.*]*?)\#\#\# Operating System([\S\s.*]*?)\#\#\# Device([\S\s.*]*?)\#\#\# Browser & Version([\S\s.*]*?)\#\#\# Steps to reproduce([\S\s.*]*?)\#\#\# What is expected([\S\s.*]*?)\#\#\# What is actually happening([\S\s.*]*?)---([\S\s.*]*?)\#\#\# Solution([\S\s.*]*?)\#\#\# Additional comments([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)|(\#\#\# What is your enhancement([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
## [1.0.0] 2020-09-29
44
### Original Release
5-
- Started project from [Tailwind Starter Kit by Creative Tim](https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation?ref=twa-changelog)
5+
- Started project from [Tailwind Starter Kit by Creative Tim](https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation?ref=na-changelog)
66
- Added design from Tailwind Starter Kit by Creative Tim

ISSUE_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<!--
22
IMPORTANT: Please use the following link to create a new issue:
33
4-
https://www.creative-tim.com/new-issue/tailwind-webapp-angular?ref=twa-new-issue
4+
https://www.creative-tim.com/new-issue/notus-angular?ref=na-new-issue
55
66
**If your issue was not created using the app above, it will be closed immediately.**
77
-->
88

99
<!--
1010
Love Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:
11-
👉 https://www.creative-tim.com/bundles?ref=twa-issue-template
12-
👉 https://www.creative-tim.com?ref=twa-issue-template
11+
👉 https://www.creative-tim.com/bundles?ref=na-issue-template
12+
👉 https://www.creative-tim.com?ref=na-issue-template
1313
-->

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Creative Tim (https://www.creative-tim.com?ref=twa-license)
3+
Copyright (c) 2020 Creative Tim (https://www.creative-tim.com?ref=na-license)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

README.md

Lines changed: 54 additions & 54 deletions
Large diffs are not rendered by default.

angular.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": 1,
44
"newProjectRoot": "projects",
55
"projects": {
6-
"tailwind-webapp-angular": {
6+
"notus-angular": {
77
"projectType": "application",
88
"schematics": {},
99
"root": "",
@@ -14,7 +14,7 @@
1414
"builder": "@angular-devkit/build-angular:browser",
1515
"options": {
1616
"allowedCommonJsDependencies": [ "chart.js" ],
17-
"outputPath": "dist/tailwind-webapp-angular",
17+
"outputPath": "dist/notus-angular",
1818
"index": "src/index.html",
1919
"main": "src/main.ts",
2020
"polyfills": "src/polyfills.ts",
@@ -66,18 +66,18 @@
6666
"serve": {
6767
"builder": "@angular-devkit/build-angular:dev-server",
6868
"options": {
69-
"browserTarget": "tailwind-webapp-angular:build"
69+
"browserTarget": "notus-angular:build"
7070
},
7171
"configurations": {
7272
"production": {
73-
"browserTarget": "tailwind-webapp-angular:build:production"
73+
"browserTarget": "notus-angular:build:production"
7474
}
7575
}
7676
},
7777
"extract-i18n": {
7878
"builder": "@angular-devkit/build-angular:extract-i18n",
7979
"options": {
80-
"browserTarget": "tailwind-webapp-angular:build"
80+
"browserTarget": "notus-angular:build"
8181
}
8282
},
8383
"test": {
@@ -114,15 +114,15 @@
114114
"builder": "@angular-devkit/build-angular:protractor",
115115
"options": {
116116
"protractorConfig": "e2e/protractor.conf.js",
117-
"devServerTarget": "tailwind-webapp-angular:serve"
117+
"devServerTarget": "notus-angular:serve"
118118
},
119119
"configurations": {
120120
"production": {
121-
"devServerTarget": "tailwind-webapp-angular:serve:production"
121+
"devServerTarget": "notus-angular:serve:production"
122122
}
123123
}
124124
}
125125
}
126126
}},
127-
"defaultProject": "tailwind-webapp-angular"
127+
"defaultProject": "notus-angular"
128128
}

e2e/src/app.e2e-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe("workspace-project App", () => {
1010

1111
it("should display welcome message", () => {
1212
page.navigateTo();
13-
expect(page.getTitleText()).toEqual("tailwind-webapp-angular app is running!");
13+
expect(page.getTitleText()).toEqual("notus-angular app is running!");
1414
});
1515

1616
afterEach(async () => {

karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = function (config) {
1616
clearContext: false, // leave Jasmine Spec Runner output visible in browser
1717
},
1818
coverageIstanbulReporter: {
19-
dir: require("path").join(__dirname, "./coverage/tailwind-webapp-angular"),
19+
dir: require("path").join(__dirname, "./coverage/notus-angular"),
2020
reports: ["html", "lcovonly", "text-summary"],
2121
fixWebpackSourcePaths: true,
2222
},

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "tailwind-webapp-angular",
2+
"name": "notus-angular",
33
"version": "1.0.0",
4-
"description": "Tailwind WebApp Angular - A free Tailwind CSS and Angular WebApp UI Kit and Admin by Creative Tim.",
5-
"repository": "https://github.com/creativetimofficial/tailwind-webapp-angular",
4+
"description": "Notus Angular - Free Tailwind CSS UI Kit and Admin by Creative Tim.",
5+
"repository": "https://github.com/creativetimofficial/notus-angular",
66
"license": "MIT",
77
"scripts": {
88
"ng": "ng",

src/app/components/cards/card-bar-chart/card-bar-chart.component.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ export class CardBarChartComponent implements OnInit, AfterViewInit {
2929
borderColor: "#ed64a6",
3030
data: [30, 78, 56, 34, 100, 45, 13],
3131
fill: false,
32-
barThickness: 8
32+
barThickness: 8,
3333
},
3434
{
3535
label: new Date().getFullYear() - 1,
3636
fill: false,
3737
backgroundColor: "#4c51bf",
3838
borderColor: "#4c51bf",
3939
data: [27, 68, 86, 74, 10, 4, 87],
40-
barThickness: 8
41-
}
42-
]
40+
barThickness: 8,
41+
},
42+
],
4343
},
4444
options: {
4545
maintainAspectRatio: false,

0 commit comments

Comments
 (0)