Skip to content

Commit

Permalink
Updated package files
Browse files Browse the repository at this point in the history
Updated webpack.mix.js
Updated version
  • Loading branch information
TS committed Mar 28, 2024
1 parent f282f34 commit 715a399
Show file tree
Hide file tree
Showing 12 changed files with 95 additions and 95 deletions.
2 changes: 1 addition & 1 deletion dist/tgen-with-presets.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tgen-with-presets.min.js.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* https://texture-generator.com/
*
* @copyright 2015-2022 Tamas Schalk
* @version 1.4.24
* @version 1.4.25
* @license MIT
*
*/
Binary file modified dist/tgen-with-presets.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/tgen.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tgen.min.js.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* https://texture-generator.com/
*
* @copyright 2015-2022 Tamas Schalk
* @version 1.4.24
* @version 1.4.25
* @license MIT
*
*/
Binary file modified dist/tgen.min.js.gz
Binary file not shown.
160 changes: 80 additions & 80 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "seamless-texture-generator",
"version": "1.4.24",
"version": "1.4.25",
"description": "Seamless texture generator",
"homepage": "https://github.com/schalkt/tgen/",
"scripts": {
Expand Down Expand Up @@ -38,7 +38,7 @@
"i": "^0.3.7",
"laravel-mix": "^6.0.49",
"lodash": "^4.17.21",
"mocha": "10.3.0",
"mocha": "10.4.0",
"pngjs": "7.0.0",
"resolve-url-loader": "^5.0.0"
}
Expand Down
4 changes: 2 additions & 2 deletions src/tgen-base-common.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
* https://texture-generator.com/
*
* @copyright 2015-2022 Tamas Schalk
* @version 1.4.24
* @version 1.4.25
* @license MIT
*
*/

const SeamlessTextureGenerator = {
version : "1.4.24",
version : "1.4.25",
defaults: {},
effects: {},
prepare: {},
Expand Down
2 changes: 1 addition & 1 deletion src/tgen-base-with-presets.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* https://texture-generator.com/
*
* @copyright 2015-2022 Tamas Schalk
* @version 1.4.24
* @version 1.4.25
* @license MIT
*
*/
Expand Down
2 changes: 1 addition & 1 deletion src/tgen-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* https://texture-generator.com/
*
* @copyright 2015-2022 Tamas Schalk
* @version 1.4.24
* @version 1.4.25
* @license MIT
*
*/
Expand Down
10 changes: 5 additions & 5 deletions webpack.mix.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const fs = require("fs");
const mix = require("laravel-mix");
const package = JSON.parse(fs.readFileSync("./package.json"));
const packagejson = JSON.parse(fs.readFileSync("./package.json"));
const CompressionPlugin = require("compression-webpack-plugin");

mix.disableNotifications();
Expand All @@ -17,24 +17,24 @@ mix.replace([
[
"./src/tgen-base.js",
/version\s\d+\.\d+\.\d+/,
"version " + package.version,
"version " + packagejson.version,
],
[
// @version 1.4.18
"./src/tgen-base-common.js",
/version\s\d+\.\d+\.\d+/,
"version " + package.version,
"version " + packagejson.version,
],
[
// version : "1.4.16",
"./src/tgen-base-common.js",
/version\s:\s"\d+\.\d+\.\d+/,
'version : "' + package.version,
'version : "' + packagejson.version,
],
[
"./src/tgen-base-with-presets.js",
/version\s\d+\.\d+\.\d+/,
"version " + package.version,
"version " + packagejson.version,
],
]);

Expand Down

0 comments on commit 715a399

Please sign in to comment.