Skip to content

Commit

Permalink
v4.0
Browse files Browse the repository at this point in the history
Update Bootstrap to v5
Deprecate third party plugin pages
Update font-awesome to Bootstrap Icons
  • Loading branch information
pratikborsadiya committed Jul 1, 2023
1 parent 44735d3 commit 107b2fe
Show file tree
Hide file tree
Showing 195 changed files with 13,700 additions and 36,327 deletions.
20 changes: 16 additions & 4 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const sass = require('node-sass');
module.exports = function(grunt) {
const sass = require('sass');
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
watch: {
Expand Down Expand Up @@ -53,22 +53,34 @@ module.exports = function(grunt) {
options: {
map: false,
processors: [
require('autoprefixer')
require('autoprefixer')({ overrideBrowserslist: 'last 2 versions' }), // add vendor prefixes
]
},
dist: {
src: ['docs/css/*.css']
}
},
cssmin: {
target: {
files: [{
expand: true,
cwd: 'docs/css',
src: ['*.css', '!*.min.css'],
dest: 'docs/css',
ext: '.min.css'
}]
}
}
});

// Load the Grunt plugins.
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-postcss');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-pug');
grunt.loadNpmTasks('grunt-contrib-watch');

// Set task aliases
grunt.registerTask('default', ['watch']);
grunt.registerTask('build', ['pug','sass','postcss']);
grunt.registerTask('build', ['pug', 'sass', 'postcss', 'cssmin']);
};
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ Use `npm run start` command to start a development server using NodeJs.
> * The NodeJs server mentioned in `npm run start` command is for development purpose only. DONOT use it as a production server.
## Customization
For more information about customizing theme colors please follow the official [documentation](http://pratikborsadiya.in/blog/vali-admin/).
For more information about customizing theme colors please follow the official [documentation](https://pratikborsadiya.in/vali-admin/docs.html).

## RTL Support
Please follow the official [documentation](http://pratikborsadiya.in/blog/vali-admin/) to enable RTL support.
Please follow the official [documentation](https://pratikborsadiya.in/vali-admin/docs.html) to enable RTL support.

## Contributing
Please take a look at [contributing guidelines](CONTRIBUTING.md) if you are considering contributing to the repository.
Expand Down
109 changes: 50 additions & 59 deletions docs/blank-page.html

Large diffs are not rendered by default.

245 changes: 116 additions & 129 deletions docs/bootstrap-components.html

Large diffs are not rendered by default.

283 changes: 0 additions & 283 deletions docs/charts.html

This file was deleted.

Loading

0 comments on commit 107b2fe

Please sign in to comment.