Skip to content

Commit

Permalink
chore: fix staging
Browse files Browse the repository at this point in the history
  • Loading branch information
nalancer08 committed Dec 6, 2024
1 parent ac9ad2d commit 7c442ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .grunt/compile_html.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ let Config = require(processCwd() + '/config.js');

// -- Get environment
let env = process.argv[2] || 'development';
if (env === 'dev') { env = 'development'; }
if (env === 'build:qa') { env = 'qa'; }
if (env === 'build:prod') { env = 'production'; }
if (env === 'dev') { env = 'development'; }
else { env = env.split(':')[1] || ''; }

// -- Init Dipper
let settings = Config.settings;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vanilla-jet",
"version": "1.0.35",
"version": "1.0.36",
"description": "VannilaJet framework",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 7c442ce

Please sign in to comment.