Skip to content

Commit 02815f9

Browse files
committed
release: v4.0.0-beta.2
1 parent 3373966 commit 02815f9

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

+2881
-2725
lines changed

build/change-version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const DRY_RUN = process.argv.includes('--dry') || process.argv.includes('--dry-r
1818

1919
// These are the filetypes we only care about replacing the version
2020
const GLOB = [
21-
'**/*.{css,html,js,json,md,scss,txt,yml}'
21+
'**/*.{css,html,js,json,md,pug,scss,txt,yml}'
2222
]
2323
const GLOBBY_OPTIONS = {
2424
cwd: path.join(__dirname, '..'),

package-lock.json

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

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/coreui-free-bootstrap-admin-template",
3-
"version": "4.0.0-beta.1",
3+
"version": "4.0.0-beta.2",
44
"description": "Free Bootstrap Admin Template",
55
"keywords": [
66
"admin",
@@ -78,45 +78,45 @@
7878
"zip": "git archive -o coreui-free-bootstrap-admin-template-v$npm_package_version.zip -9 HEAD"
7979
},
8080
"dependencies": {
81-
"@coreui/chartjs": "^3.0.0-alpha.0",
82-
"@coreui/coreui": "^4.0.0-rc.2",
81+
"@coreui/chartjs": "^3.0.0-rc.0",
82+
"@coreui/coreui": "^4.0.0-rc.3",
8383
"@coreui/icons": "^2.0.1",
8484
"@coreui/utils": "^1.3.1",
85-
"chart.js": "^3.2.1",
85+
"chart.js": "^3.3.2",
8686
"simplebar": "^5.3.3"
8787
},
8888
"devDependencies": {
89-
"@babel/cli": "^7.14.3",
90-
"@babel/core": "^7.14.3",
91-
"@babel/preset-env": "^7.14.2",
89+
"@babel/cli": "^7.14.5",
90+
"@babel/core": "^7.14.5",
91+
"@babel/preset-env": "^7.14.5",
9292
"@coreui/vendors-injector": "^1.1.3",
93-
"autoprefixer": "^10.2.5",
93+
"autoprefixer": "^10.2.6",
9494
"browser-sync": "^2.26.14",
9595
"clean-css-cli": "^5.3.0",
9696
"copyfiles": "^2.4.1",
9797
"cross-env": "^7.0.3",
98-
"eslint": "^7.25.0",
98+
"eslint": "^7.28.0",
9999
"eslint-config-xo": "^0.36.0",
100-
"eslint-plugin-import": "^2.23.3",
101-
"eslint-plugin-unicorn": "^31.0.0",
100+
"eslint-plugin-import": "^2.23.4",
101+
"eslint-plugin-unicorn": "^33.0.1",
102102
"find-unused-sass-variables": "^3.1.0",
103103
"foreach-cli": "^1.8.1",
104104
"linkinator": "^2.13.6",
105105
"minimist": "^1.2.5",
106106
"mkdirp": "^1.0.4",
107107
"nodemon": "^2.0.7",
108108
"npm-run-all": "^4.1.5",
109-
"postcss": "^8.3.0",
109+
"postcss": "^8.3.4",
110110
"postcss-cli": "^8.3.1",
111-
"postcss-combine-duplicated-selectors": "^10.0.2",
112-
"prettier": "2.3.0",
111+
"postcss-combine-duplicated-selectors": "^10.0.3",
112+
"prettier": "2.3.1",
113113
"pug": "^3.0.2",
114114
"rimraf": "^3.0.2",
115-
"sass": "^1.32.12",
116-
"serve": "^11.3.2",
115+
"sass": "1.32.13",
116+
"serve": "^12.0.0",
117117
"shelljs": "^0.8.4",
118118
"stylelint": "^13.13.1",
119-
"stylelint-config-twbs-bootstrap": "^2.2.0",
120-
"sync-directory": "^2.2.17"
119+
"stylelint-config-twbs-bootstrap": "^2.2.1",
120+
"sync-directory": "^2.2.22"
121121
}
122122
}

src/js/charts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Boostrap Admin Template (v4.0.0-beta.1): main.js
5+
* CoreUI Boostrap Admin Template (v4.0.0-beta.2): main.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/colors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Boostrap Admin Template (v4.0.0-beta.1): colors.js
5+
* CoreUI Boostrap Admin Template (v4.0.0-beta.2): colors.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Boostrap Admin Template (v4.0.0-beta.1): main.js
5+
* CoreUI Boostrap Admin Template (v4.0.0-beta.2): main.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/popovers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Free Boostrap Admin Template (v4.0.0-beta.1): popovers.js
5+
* CoreUI Free Boostrap Admin Template (v4.0.0-beta.2): popovers.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/toasts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Free Boostrap Admin Template (v4.0.0-beta.1): popovers.js
5+
* CoreUI Free Boostrap Admin Template (v4.0.0-beta.2): popovers.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/tooltips.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Free Boostrap Admin Template (v4.0.0-beta.1): tooltips.js
5+
* CoreUI Free Boostrap Admin Template (v4.0.0-beta.2): tooltips.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

src/js/widgets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI Boostrap Admin Template (v4.0.0-beta.1): main.js
5+
* CoreUI Boostrap Admin Template (v4.0.0-beta.2): main.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/

0 commit comments

Comments
 (0)