diff --git a/createBuildDate.js b/createBuildDate.js
deleted file mode 100644
index 68ee8da..0000000
--- a/createBuildDate.js
+++ /dev/null
@@ -1,10 +0,0 @@
-const { writeFileSync } = require('fs')
-const { join } = require('path')
-
-const TIME_STAMP_PATH = join(__dirname, 'src/assets/buildDate.json');
-
-const createBuildDate = {
- year: new Date()
-}
-
-writeFileSync(TIME_STAMP_PATH, JSON.stringify(createBuildDate, null, 2));
\ No newline at end of file
diff --git a/package.json b/package.json
index 9f163b7..afbc417 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,7 @@
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.conf.json",
- "build": "node createBuildDate.js && ng build",
+ "build": "node updateEnvironmentInfo.js && ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
diff --git a/src/app/app.component.html b/src/app/app.component.html
index b4856f9..6d245c3 100644
--- a/src/app/app.component.html
+++ b/src/app/app.component.html
@@ -11,5 +11,11 @@