From c63e25ee0b5f8c27b5dd2e92c7339f735f59fd97 Mon Sep 17 00:00:00 2001 From: Matthew Peveler Date: Thu, 19 Aug 2021 15:30:28 -0400 Subject: [PATCH] Write actual version to generated dist file Signed-off-by: Matthew Peveler --- Gruntfile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index b28b255c3..86ba7efc9 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,3 +1,5 @@ +const package = require('./package.json'); + module.exports = function (grunt) { grunt.initConfig({ coffeelint: { @@ -42,7 +44,7 @@ module.exports = function (grunt) { ' * it requires no server-side code and can be added to any web app simply by', ' * including a couple JavaScript files.', ' *', - ' * Firepad 0.0.0', + ' * Firepad ' + package.version, ' * http://www.firepad.io/', ' * License: MIT', ' * Copyright: 2014 Firebase',