Skip to content

Commit d7d7646

Browse files
authored
Merge pull request #52 from coreui/fix-missing-commonjs
v2.0.24
2 parents af05d56 + 586f293 commit d7d7646

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+754
-148
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
## v2.0.23
1+
## v2.0.24
2+
- fix(build): add missing `commonjs` for utilities
23
- chore: add `@babel/polyfill`
34
- fix(ie): add `NodeList` `forEach` polyfill
45
- fix(sidebar): add `dataset.toggle` ie10 fix
56
- fix(aside-menu): add `dataset.toggle` ie10 fix
67
- chore(build): add `rollup-plugin-commonjs`
78

9+
## v2.0.23
10+
_broken build, do not use_
11+
812
## v2.0.22
913
- fix(buttons.scss): wrong cursor for disabled state
1014
- chore: update `eslint` to `5.8.0`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ $ npm install @coreui/coreui --save
5252
### Yarn
5353

5454
``` bash
55-
$ yarn add @coreui/[email protected].23
55+
$ yarn add @coreui/[email protected].24
5656
```
5757

5858
### Composer
5959

6060
``` bash
61-
$ composer require coreui/coreui:2.0.23
61+
$ composer require coreui/coreui:2.0.24
6262
```
6363

6464
## Usage

build/rollup.config.utilities.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
const path = require('path')
44
const babel = require('rollup-plugin-babel')
55
const resolve = require('rollup-plugin-node-resolve')
6+
const commonjs = require('rollup-plugin-commonjs')
67

78
const pkg = require(path.resolve(__dirname, '../package.json'))
89
const BUNDLE = process.env.BUNDLE === 'true'
@@ -11,6 +12,7 @@ const year = new Date().getFullYear()
1112
let fileDest = 'coreui-utilities.js'
1213
const plugins = [
1314
resolve(),
15+
commonjs(),
1416
babel({
1517
exclude: 'node_modules/**', // Only transpile our source code
1618
externalHelpersWhitelist: [ // Include only required helpers

dist/css/coreui-standalone.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/coreui-standalone.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/coreui-standalone.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/coreui-standalone.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/coreui.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/coreui.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/coreui.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)