Skip to content

Commit cca4882

Browse files
committed
Ship v2.0.0-rc.1
1 parent 988b8e6 commit cca4882

Some content is hidden

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

64 files changed

+787
-562
lines changed

build/vendors-sass.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const vendors = () => {
2525
const pattern = '**/*.scss'
2626
const ignore = '**/_*.scss'
2727
const options = {
28-
cwd: 'src/scss/vendors/',
28+
cwd: cwd,
2929
ignore: ignore
3030
}
3131
const filenames = new glob.sync(pattern, options)
@@ -55,7 +55,7 @@ const compileSass = (options = {}) => {
5555
sourceMapContents: true
5656
})
5757
} catch(e) {
58-
//Catch error, the process crashed
58+
// catch error, the process crashed
5959
const error = `
6060
file: ${e.file},
6161
line: ${e.line},
@@ -120,7 +120,6 @@ const compile = (vendors) => {
120120
}
121121

122122
const main = () => {
123-
// vendors()
124123
compile(vendors())
125124
}
126125

package-lock.json

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

package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/coreui-free-bootstrap-admin-template",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"description": "Free Bootstrap Admin Template",
55
"keywords": [
66
"admin",
@@ -46,12 +46,10 @@
4646
"build-vendors": "node build/vendors.js",
4747
"css": "npm-run-all --parallel css-compile* --sequential css-prefix css-minify*",
4848
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 src/scss/style.scss src/css/style.css",
49-
"css-compile-vendors": "foreach -g \"src/scss/vendors/**/*.scss\" -i \"src/scss/vendors/**/_*.scss\" -x \"node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 --output src/vendors/css/#{reldir}/ #{path}\" --no-c",
49+
"css-compile-vendors": "node build/vendors-sass.js",
5050
"css-lint": "stylelint --config build/.stylelintrc --syntax scss \"src/scss/**/*.scss\"",
5151
"css-minify": "cleancss --level 1 --source-map --source-map-inline-sources --output src/css/style.min.css src/css/style.css",
52-
"css-minify-vendors": "foreach -g \"src/vendors/css/*.css\" -i \"src/vendors/css/*.min.css\" -x \"cleancss --level 1 --source-map --source-map-inline-sources #{path} --output #{dir}/#{name}.min#{ext}\" --no-c",
5352
"css-prefix": "postcss --config build/postcss.config.js --replace \"src/css/*.css\" \"!src/css/*.min.css\"",
54-
"css-prefix-vendors": "postcss --config build/postcss.config.js --replace \"src/vendors/css/**/*.css\" \"!src/vendors/css/**/*.css\"",
5553
"js": "npm-run-all --parallel js-compile* js-lint*",
5654
"js-compile": "cross-env PLUGINS=true babel src/js/src/ --out-dir src/js/ --source-maps",
5755
"js-lint": "eslint src/js/src",

src/404.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.0.0-rc.0
4+
* @version v2.0.0-rc.1
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)
@@ -22,7 +22,7 @@
2222
<link href="node_modules/simple-line-icons/css/simple-line-icons.css" rel="stylesheet">
2323
<!-- Main styles for this application-->
2424
<link href="css/style.css" rel="stylesheet">
25-
<link href="vendors/css/pace.min.css" rel="stylesheet">
25+
<link href="vendors/pace-progress/css/pace.min.css" rel="stylesheet">
2626
</head>
2727
<body class="app flex-row align-items-center">
2828
<div class="container">

src/500.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.0.0-rc.0
4+
* @version v2.0.0-rc.1
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)
@@ -22,7 +22,7 @@
2222
<link href="node_modules/simple-line-icons/css/simple-line-icons.css" rel="stylesheet">
2323
<!-- Main styles for this application-->
2424
<link href="css/style.css" rel="stylesheet">
25-
<link href="vendors/css/pace.min.css" rel="stylesheet">
25+
<link href="vendors/pace-progress/css/pace.min.css" rel="stylesheet">
2626
</head>
2727
<body class="app flex-row align-items-center">
2828
<div class="container">

src/base-breadcrumb.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.0.0-rc.0
4+
* @version v2.0.0-rc.1
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)
@@ -22,7 +22,7 @@
2222
<link href="node_modules/simple-line-icons/css/simple-line-icons.css" rel="stylesheet">
2323
<!-- Main styles for this application-->
2424
<link href="css/style.css" rel="stylesheet">
25-
<link href="vendors/css/pace.min.css" rel="stylesheet">
25+
<link href="vendors/pace-progress/css/pace.min.css" rel="stylesheet">
2626
</head>
2727
<body class="app header-fixed sidebar-fixed aside-menu-fixed sidebar-lg-show">
2828
<header class="app-header navbar">

src/base-cards.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.0.0-rc.0
4+
* @version v2.0.0-rc.1
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)
@@ -22,7 +22,7 @@
2222
<link href="node_modules/simple-line-icons/css/simple-line-icons.css" rel="stylesheet">
2323
<!-- Main styles for this application-->
2424
<link href="css/style.css" rel="stylesheet">
25-
<link href="vendors/css/pace.min.css" rel="stylesheet">
25+
<link href="vendors/pace-progress/css/pace.min.css" rel="stylesheet">
2626
</head>
2727
<body class="app header-fixed sidebar-fixed aside-menu-fixed sidebar-lg-show">
2828
<header class="app-header navbar">

src/base-carousel.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.0.0-rc.0
4+
* @version v2.0.0-rc.1
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)
@@ -22,7 +22,7 @@
2222
<link href="node_modules/simple-line-icons/css/simple-line-icons.css" rel="stylesheet">
2323
<!-- Main styles for this application-->
2424
<link href="css/style.css" rel="stylesheet">
25-
<link href="vendors/css/pace.min.css" rel="stylesheet">
25+
<link href="vendors/pace-progress/css/pace.min.css" rel="stylesheet">
2626
</head>
2727
<body class="app header-fixed sidebar-fixed aside-menu-fixed sidebar-lg-show">
2828
<header class="app-header navbar">

src/base-collapse.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.0.0-rc.0
4+
* @version v2.0.0-rc.1
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)
@@ -22,7 +22,7 @@
2222
<link href="node_modules/simple-line-icons/css/simple-line-icons.css" rel="stylesheet">
2323
<!-- Main styles for this application-->
2424
<link href="css/style.css" rel="stylesheet">
25-
<link href="vendors/css/pace.min.css" rel="stylesheet">
25+
<link href="vendors/pace-progress/css/pace.min.css" rel="stylesheet">
2626
</head>
2727
<body class="app header-fixed sidebar-fixed aside-menu-fixed sidebar-lg-show">
2828
<header class="app-header navbar">

src/base-forms.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.0.0-rc.0
4+
* @version v2.0.0-rc.1
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)
@@ -22,7 +22,7 @@
2222
<link href="node_modules/simple-line-icons/css/simple-line-icons.css" rel="stylesheet">
2323
<!-- Main styles for this application-->
2424
<link href="css/style.css" rel="stylesheet">
25-
<link href="vendors/css/pace.min.css" rel="stylesheet">
25+
<link href="vendors/pace-progress/css/pace.min.css" rel="stylesheet">
2626
</head>
2727
<body class="app header-fixed sidebar-fixed aside-menu-fixed sidebar-lg-show">
2828
<header class="app-header navbar">

0 commit comments

Comments
 (0)