Skip to content

Commit

Permalink
Chore: Release v3.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Amr Wagdy committed Oct 19, 2022
1 parent 86943e3 commit 2cdf0d6
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 15 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
yarn.lock
yarn.lock
bin
.env
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ Types of changes:
- ...

-------------
## 3.0.4 - 2022-10-19
### Fixed
- Hotspot icons width

## 3.0.3 - 2022-05-04
### Fixed
- Error on loading original images from image list
Expand Down
9 changes: 5 additions & 4 deletions build/js-cloudimage-360-view.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion config/webpack-build.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const banner = `
${pkg.name} v${pkg.version}
${pkg.repository.url}
Copyright (c) 2019 ${pkg.author}
Copyright (c) ${new Date().getFullYear()} ${pkg.author}
Released under the ${pkg.license} license
Date: ${now.toISOString()}
Expand Down
23 changes: 14 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-cloudimage-360-view",
"version": "3.0.3",
"version": "3.0.4",
"main": "dist/index.js",
"description": "",
"author": "scaleflex",
Expand All @@ -23,14 +23,15 @@
],
"scripts": {
"start-demo": "webpack-dev-server --mode development --config config/webpack-demo.config.js",
"clean-build": "rm -rf build",
"build": "npm run clean-build && webpack --mode production --config config/webpack-build.config.js",
"clean-dist": "rm -rf dist",
"dist": "npm run clean-dist && babel src -d dist --copy-files",
"clean-demo": "rm -rf examples/dist",
"build-demo": "npm run clean-demo && webpack --mode production --config config/webpack-demo.config.js",
"deploy-demo": "gh-pages -d examples/dist",
"publish-demo": "npm run build-demo && npm run deploy-demo"
"clean:build": "rm -rf build",
"build:bundle": "npm run clean:build && webpack --mode production --config config/webpack-build.config.js",
"deploy:bundle": "npm run build:bundle && node bin/deploy-bundle",
"clean:dist": "rm -rf dist",
"dist": "npm run clean:dist && babel src -d dist --copy-files",
"clean:demo": "rm -rf examples/dist",
"build:demo": "npm run clean:demo && webpack --mode production --config config/webpack-demo.config.js",
"deploy:demo": "gh-pages -d examples/dist",
"publish:demo": "npm run build-demo && npm run deploy-demo"
},
"dependencies": {
"@babel/runtime": "^7.17.0",
Expand All @@ -49,9 +50,13 @@
"babel-preset-minify": "^0.5.0",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^2.1.1",
"dotenv": "^16.0.3",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"gh-pages": "^2.0.1",
"highlight.js": "^10.4.1",
"html-webpack-plugin": "^3.2.0",
"isomorphic-fetch": "^3.0.0",
"mini-css-extract-plugin": "^0.9.0",
"mobile-detect": "^1.4.3",
"style-loader": "^0.23.1",
Expand Down

0 comments on commit 2cdf0d6

Please sign in to comment.