Skip to content

Commit e5dc362

Browse files
committed
fix minified build was outdated
1 parent 3ef4e3e commit e5dc362

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

dist/lucky-case.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* The lucky javascript library to identify and convert strings from any letter case to another
55
*
66
* @version 1.1.1
7-
* @date 2021-01-10T19:15:32.684Z
7+
* @date 2021-01-10T23:06:48.800Z
88
* @link https://github.com/magynhard/lucky-case
99
* @author Matthäus J. N. Beyrle
1010
* @copyright Matthäus J. N. Beyrle

dist/lucky-case.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lucky-case.string.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* The lucky javascript library to identify and convert strings from any letter case to another
55
*
66
* @version 1.1.1
7-
* @date 2021-01-10T19:15:32.690Z
7+
* @date 2021-01-10T23:06:48.805Z
88
* @link https://github.com/magynhard/lucky-case
99
* @author Matthäus J. N. Beyrle
1010
* @copyright Matthäus J. N. Beyrle

dist/lucky-case.string.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lucky-case",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "The lucky javascript library to identify and convert strings from any letter case to another",
55
"exports": {
66
".": "./src/lucky-case/lucky-case.js",

scripts/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ for(let build_key of Object.keys(builds)) {
9090
fs.writeFileSync(build.destination_file, releaseTemplate() + final_file);
9191
})();
9292
(async function createMinifiedBuilds() {
93-
const babel_command = `babel ${build.destination_min_file} --no-comments --out-file ${build.destination_min_file}`;
93+
const babel_command = `babel ${build.destination_file} --no-comments --out-file ${build.destination_min_file}`;
9494
const uglify_command = `uglifyjs ${build.destination_min_file} -m -c -o ${build.destination_min_file}`;
9595
await exec_prom(babel_command + ' && ' + uglify_command).then(() => {
9696
prependToFile(build.destination_min_file, releaseTemplate());

0 commit comments

Comments
 (0)