We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e0a8d1 commit cd609b1Copy full SHA for cd609b1
src/core/constants.js
@@ -11,7 +11,8 @@ const _PI = Math.PI;
11
* @property {String} VERSION
12
* @final
13
*/
14
-export const VERSION = 'VERSIONCONST';
+export const VERSION =
15
+ 'VERSION_CONST_WILL_BE_REPLACED_BY_BROWSERIFY_BUILD_PROCESS';
16
17
// GRAPHICS RENDERER
18
/**
tasks/build/browserify.js
@@ -79,7 +79,7 @@ module.exports = function(grunt) {
79
})
80
.on('end', function() {
81
code = code.replace(
82
- `'VERSIONCONST'`,
+ `'VERSION_CONST_WILL_BE_REPLACED_BY_BROWSERIFY_BUILD_PROCESS'`,
83
grunt.template.process(`'<%= pkg.version %>'`)
84
);
85
0 commit comments