Skip to content

Commit

Permalink
config: update semantic release github config
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdeansanchez committed Feb 5, 2021
1 parent 235c460 commit ad6782d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"name": "imgix-core-js",
"description": "A JavaScript client library for generating image URLs with imgix",
"version": "0.3.0-beta.1",
"version": "2.3.2",
"repository": "https://github.com/imgix/imgix-core-js",
"license": "BSD-2-Clause",
"main": "dist/imgix-core-js.cjs",
"module": "dist/imgix-core-js.mjs",
"browser": "dist/imgix-core-js.js",
"type": "module",
"main": "dist/imgix-core-js.cjs.js",
"module": "dist/imgix-core-js.esm.js",
"browser": "dist/imgix-core-js.umd.js",
"types": "dist/imgix-core-js.d.ts",
"dependencies": {
"js-base64": "~2.6.0",
Expand Down Expand Up @@ -94,6 +93,8 @@
[
"@semantic-release/github",
{
"successComment": false,
"releasedLabels": false,
"assets": [
{
"path": "dist/imgix-core-js.js",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// package version used in the ix-lib parameter
export const VERSION = '0.3.0-beta.1';
export const VERSION = '2.3.2';
// regex pattern used to determine if a domain is valid
export const DOMAIN_REGEX = /^(?:[a-z\d\-_]{1,62}\.){0,125}(?:[a-z\d](?:\-(?=\-*[a-z\d])|[a-z]|\d){0,62}\.)[a-z\d]{1,63}$/i;
// minimum generated srcset width
Expand Down

0 comments on commit ad6782d

Please sign in to comment.