Skip to content

Commit

Permalink
fix(deploy): corrected regex mismatch in semantic release
Browse files Browse the repository at this point in the history
  • Loading branch information
atlawrie committed Aug 31, 2022
1 parent 1804dce commit 914c091
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"src/imgix.js"
],
"from": "var VERSION = '.*'",
"to": "var VERSION = \"${nextRelease.version}\"",
"to": "var VERSION = '${nextRelease.version}'",
"results": [
{
"file": "src/imgix.js",
Expand Down
2 changes: 1 addition & 1 deletion src/imgix.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var ImgixTag = require('./ImgixTag.js'),
util = require('./util.js'),
defaultConfig = require('./defaultConfig');

var VERSION = "3.6.0";
var VERSION = '3.6.0';

global.imgix = {
init: function (opts) {
Expand Down

0 comments on commit 914c091

Please sign in to comment.