Server IP : 150.95.80.236 / Your IP : 3.138.33.201 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/uat.pcu.in.th/demo15/src/plugins/bootstrap-session-timeout/ |
Upload File : |
'use strict'; module.exports = function(grunt) { // Show elapsed time at the end require('time-grunt')(grunt); // Load all grunt tasks require('load-grunt-tasks')(grunt); // Project configuration. grunt.initConfig({ connect: { options: { port: 9000, // Enable hostname '0.0.0.0' to access the server from outside. hostname: '0.0.0.0', livereload: 36729 }, livereload: { options: { open: 'http://localhost:9000', middleware: function(connect) { return [ connect.static('./') ]; } } } }, jshint: { options: { jshintrc: '.jshintrc', reporter: require('jshint-stylish') }, dist: { src: ['dist/bootstrap-session-timeout.js'] } }, watch: { dist: { files: '<%= jshint.dist.src %>', tasks: ['jshint:dist'] }, livereload: { options: { livereload: '<%= connect.options.livereload %>' }, files: [ '*.html', 'examples/*.html', 'dist/*.js' ] } }, uglify: { dist: { files: { 'dist/bootstrap-session-timeout.min.js': ['<%= jshint.dist.src %>'] } } } }); // Default task. grunt.registerTask('default', ['jshint']); grunt.registerTask('dev', ['connect:livereload', 'watch']); grunt.registerTask('min', ['jshint', 'uglify']); };