Skip to content
This repository was archived by the owner on Dec 3, 2021. It is now read-only.

Commit 30ef895

Browse files
authored
Merge pull request #14 from coreui/dev-vnext
v2.1.12
2 parents 3d5b360 + e8fd1d6 commit 30ef895

File tree

10 files changed

+1285
-861
lines changed

10 files changed

+1285
-861
lines changed

Diff for: CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## v2.1.12
2+
- chore(build/vendors): removes hash tag from urls in css files
3+
- update: `@coreui/coreui` to `^2.1.7`
4+
- update: `bootstrap` to `^4.3.1`
5+
- update: `popper.js` to `^1.14.7`
6+
- update: `@babel/core` to `^7.3.3`
7+
- update: `@babel/plugin-proposal-object-rest-spread` to `^7.3.2`
8+
- update: `@babel/preset-env` to `^7.3.1`
9+
- update: `autoprefixer` to `^9.4.8`
10+
- update: `eslint` to `^5.14.1`
11+
- update: `eslint-plugin-compat` to `^2.7.0`
12+
- update: `nodemon` to `^1.18.10`
13+
- update: `postcss-cli` to `^6.1.2`
14+
- update: `stylelint` to `^9.10.1`
15+
- update: `stylelint-scss` to `^3.5.3`
16+
117
## v2.1.11
218
- fix(collapse): add `mb-0` to accordion cards
319
- refactor(forms): add `autocomplete`

Diff for: build/vendors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const findVendors = () => {
8989
let subVendor = []
9090
if (assetPath !== undefined) {
9191
// console.log(assetPath)
92-
const path = assetPath.replace(/\?.*/, '').replace(/\'|\"/, '')
92+
const path = assetPath.replace(/\?.*|#.*/, '').replace(/\'|\"/, '')
9393
subVendor['name'] = name
9494
subVendor['filetype'] = 'other'
9595
subVendor['src'] = normalize(`css/${path}`)

Diff for: package-lock.json

+820-581
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/coreui-free-bootstrap-admin-template-ajax",
3-
"version": "2.1.11",
3+
"version": "2.1.12",
44
"description": "Free Bootstrap Admin Template Ajax",
55
"keywords": [
66
"admin",
@@ -63,48 +63,48 @@
6363
"watch-pug": "nodemon -e pug -x \"npm run pug\""
6464
},
6565
"dependencies": {
66-
"@coreui/coreui": "^2.1.5",
66+
"@coreui/coreui": "^2.1.7",
6767
"@coreui/coreui-plugin-chartjs-custom-tooltips": "1.2.0",
6868
"@coreui/icons": "0.3.0",
69-
"bootstrap": "^4.2.1",
69+
"bootstrap": "^4.3.1",
7070
"chart.js": "^2.7.3",
7171
"flag-icon-css": "^3.2.1",
7272
"font-awesome": "4.7.0",
7373
"jquery": "3.3.1",
7474
"pace-progress": "1.0.2",
7575
"perfect-scrollbar": "1.4.0",
76-
"popper.js": "^1.14.6",
76+
"popper.js": "^1.14.7",
7777
"simple-line-icons": "2.4.1"
7878
},
7979
"devDependencies": {
8080
"@babel/cli": "^7.2.3",
81-
"@babel/core": "^7.2.2",
82-
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
83-
"@babel/preset-env": "^7.2.3",
84-
"autoprefixer": "^9.4.4",
81+
"@babel/core": "^7.3.3",
82+
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
83+
"@babel/preset-env": "^7.3.1",
84+
"autoprefixer": "^9.4.8",
8585
"babel-eslint": "^10.0.1",
8686
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
8787
"browser-sync": "^2.26.3",
8888
"chalk": "^2.4.2",
8989
"clean-css-cli": "^4.2.1",
9090
"copyfiles": "^2.1.0",
9191
"cross-env": "^5.2.0",
92-
"eslint": "^5.12.0",
93-
"eslint-plugin-compat": "^2.6.3",
92+
"eslint": "^5.14.1",
93+
"eslint-plugin-compat": "^2.7.0",
9494
"foreach-cli": "^1.8.1",
9595
"js-beautify": "^1.8.9",
9696
"node-sass": "^4.11.0",
97-
"nodemon": "^1.18.9",
97+
"nodemon": "^1.18.10",
9898
"npm-run-all": "^4.1.5",
99-
"postcss-cli": "^6.1.1",
99+
"postcss-cli": "^6.1.2",
100100
"pug": "^2.0.3",
101101
"rimraf": "^2.6.3",
102102
"shelljs": "^0.8.3",
103-
"stylelint": "^9.9.0",
103+
"stylelint": "^9.10.1",
104104
"stylelint-config-recommended-scss": "^3.2.0",
105105
"stylelint-config-standard": "^18.2.0",
106106
"stylelint-order": "^2.0.0",
107-
"stylelint-scss": "^3.4.4"
107+
"stylelint-scss": "^3.5.3"
108108
},
109109
"engines": {
110110
"node": ">=6"

0 commit comments

Comments
 (0)