📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv2.demodesign.com.tr
/
assets
/
vendor
/
pwstrength-bootstrap
📝
Gruntfile.js
← Geri Dön
/*jslint node: true */ /*global */ module.exports = function (grunt) { "use strict"; var license = '/*!\n' + '* jQuery Password Strength plugin for Twitter Bootstrap\n' + '* Version: <%= pkg.version %>\n' + '*\n' + '* Copyright (c) 2008-2013 Tane Piper\n' + '* Copyright (c) 2013 Alejandro Blanco\n' + '* Dual licensed under the MIT and GPL licenses.\n' + '*/\n\n' + '(function (jQuery) {\n'; grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), jslint: { client: { src: [ 'src/*js', 'spec/*js', 'Gruntfile.js' ], directives: { browser: true, predef: [ 'jQuery' ] } } }, jasmine_node: { options: { forceExit: true, jUnit: { report: false } }, all: ['spec/'] }, concat: { options: { banner: license, footer: '}(jQuery));', process: function (src, filepath) { // Remove ALL block comments, the stripBanners only removes // the first one src = src.replace(/\/\*[\s\S]*?\*\//g, ''); return '// Source: ' + filepath + src; } }, dist: { src: [ 'src/i18n.js', 'src/rules.js', 'src/options.js', 'src/ui.js', 'src/methods.js' ], dest: '<%= pkg.name %>.js' } }, uglify: { options: { banner: '/* <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> - GPLv3 & MIT License */\n', sourceMap: true, sourceMapName: '<%= pkg.name %>.min.map' }, dist: { files: { '<%= pkg.name %>.min.js': [ '<%= concat.dist.dest %>' ] } } }, shell: { copyFile: { command: 'cp <%= concat.dist.dest %> examples/pwstrength.js' }, copyZxcvbn: { command: 'cp bower_components/zxcvbn/dist/zxcvbn.js examples/zxcvbn.js' }, copyI18next: { command: 'cp bower_components/i18next/i18next.min.js examples/i18next.js' }, makeDir: { command: 'mkdir -p dist' }, moveFiles: { command: 'mv <%= pkg.name %>* dist/' } } }); // Load the plugins grunt.loadNpmTasks('grunt-jslint'); grunt.loadNpmTasks('grunt-shell'); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-contrib-concat'); grunt.loadNpmTasks('grunt-jasmine-node'); grunt.registerTask('test', ['jslint', 'jasmine_node']); // Default task(s) grunt.registerTask('default', ['jslint', 'concat', 'uglify', 'shell']); };
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula