Skip to content

Commit

Permalink
Merge branch 'release/v3.20.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
janschoenherr committed Apr 24, 2024
2 parents 8e4ccf0 + ca43edb commit a290d72
Show file tree
Hide file tree
Showing 14 changed files with 39 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Please open an issues only for a bug report or feature request. Make sure no one
### UIkit Version

_Check if the issue is reproducible with the latest stable version._
3.20.3
3.20.4

### Actual Behavior

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
/dist/js/components/*
!/dist/js/components/.gitkeep
!/dist/js/uikit.js
!/dist/js/uikit.esm.js
!/dist/js/uikit.min.js
!/dist/js/uikit-icons.js
!/dist/js/uikit-icons.min.js
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 3.20.4 (April 24, 2024)

### Fixed

- Fix missing esm export

## 3.20.3 (April 24, 2024)

### Fixed
Expand Down
14 changes: 14 additions & 0 deletions build/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,20 @@ export async function compile(file, dest, { external, globals, name, aliases, re
...outputOptions,
file: `${dest}.js`,
},
{
globals,
banner,
format: 'esm',
file: `${dest}.esm.js`,
plugins: [
debug
? undefined
: esbuildMinify({
target: 'safari12',
supported: { 'template-literal': true },
}),
],
},
];

if (minify) {
Expand Down
2 changes: 1 addition & 1 deletion dist/css/uikit-rtl.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! UIkit 3.20.3 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
/*! UIkit 3.20.4 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
/* ========================================================================
Component: Base
========================================================================== */
Expand Down
2 changes: 1 addition & 1 deletion dist/css/uikit-rtl.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/uikit.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! UIkit 3.20.3 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
/*! UIkit 3.20.4 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
/* ========================================================================
Component: Base
========================================================================== */
Expand Down
2 changes: 1 addition & 1 deletion dist/css/uikit.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/uikit-icons.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/js/uikit-icons.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/js/uikit.esm.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/js/uikit.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! UIkit 3.20.3 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
/*! UIkit 3.20.4 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
Expand Down Expand Up @@ -3552,7 +3552,7 @@
};
App.util = util;
App.options = {};
App.version = "3.20.3";
App.version = "3.20.4";

const PREFIX = "uk-";
const DATA = "__uikit__";
Expand Down
2 changes: 1 addition & 1 deletion dist/js/uikit.min.js

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
"name": "uikit",
"title": "UIkit",
"description": "UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces.",
"version": "3.20.3",
"main": "dist/js/uikit.js",
"version": "3.20.4",
"exports": {
".": {
"import": "./dist/js/uikit.esm.js",
"require": "./dist/js/uikit.js"
}
},
"style": "dist/css/uikit.css",
"sideEffects": [
"*.css",
Expand Down

0 comments on commit a290d72

Please sign in to comment.