Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ng-file-upload

Package Overview
Dependencies
Maintainers
1
Versions
169
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ng-file-upload - npm Package Compare versions

Comparing version 4.2.4 to 5.0.0

.jshintrc

227

Gruntfile.js

@@ -1,108 +0,129 @@

module.exports = function(grunt) {
grunt.initConfig({
pkg : grunt.file.readJSON('package.json'),
'use strict';
copy : {
build : {
options : {
processContent : function(content, srcpath) {
return grunt.template.process(content);
}
},
files : [ {
expand : true,
cwd : 'demo/war/js/',
src : 'ng-file-upload*.js',
dest : 'dist/',
flatten : true,
filter : 'isFile'
}]
},
fileapi: {
files: [{
expand : true,
cwd : 'demo/war/js/',
src : 'FileAPI.flash.swf',
dest : 'dist/',
flatten : true,
filter : 'isFile'
}, {
expand : true,
cwd : 'demo/war/js/',
src : 'FileAPI.js',
dest : 'dist/',
flatten : true,
filter : 'isFile'
} ]
},
bower : {
files : [ {
expand : true,
cwd : 'dist/',
src : '*',
dest : '../angular-file-upload-bower/',
flatten : true,
filter : 'isFile'
}, {
expand : true,
cwd : 'dist/',
src : '*',
dest : '../angular-file-upload-shim-bower/',
flatten : true,
filter : 'isFile'
} ]
}
},
concat: {
dist: {
options: {
process: function(content, srcpath) {
return grunt.template.process(content);
}
},
files: {
'demo/war/js/ng-file-upload-all.js':
['demo/war/js/ng-file-upload.js',
'demo/war/js/ng-file-upload-shim.js']
}
}
},
uglify : {
options : {
banner : '/*! <%= pkg.version %> */\n'
},
build : {
files : [ {
'dist/ng-file-upload.min.js' : 'dist/ng-file-upload.js',
'dist/ng-file-upload-shim.min.js' : 'dist/ng-file-upload-shim.js',
'dist/ng-file-upload-all.min.js' : 'dist/ng-file-upload-all.js',
'dist/FileAPI.min.js' : 'dist/FileAPI.js',
'demo/war/js/FileAPI.min.js' : 'demo/war/js/FileAPI.js'
} ]
}
},
replace : {
version : {
src: ['nuget/Package.nuspec', '../angular-file-upload-bower/bower.json',
'../angular-file-upload-shim-bower/bower.json'
],
overwrite: true,
replacements: [{
from: /"version" *: *".*"/g,
to: '"version": "<%= pkg.version %>"'
}, {
from: /<version>.*<\/version>/g,
to: '<version><%= pkg.version %></version>'
}]
}
}
});
module.exports = function (grunt) {
// Load grunt tasks automatically
require('load-grunt-tasks')(grunt);
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-text-replace');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
all: {
options: {
process: function (content) {
return grunt.template.process(content);
}
},
files: {
'dist/ng-file-upload.js': ['src/upload.js', 'src/select.js', 'src/drop.js'],
'dist/ng-file-upload-shim.js': ['src/shim-upload.js', 'src/shim-elem.js', 'src/shim-filereader.js'],
'dist/ng-file-upload-all.js': ['dist/ng-file-upload.js', 'dist/ng-file-upload-shim.js']
}
}
},
uglify: {
options: {
preserveComments: 'some',
banner: '/*! <%= pkg.version %> */\n'
},
grunt.registerTask('default', [ 'concat:dist', 'copy:build', 'copy:fileapi', 'uglify', 'copy:bower', 'replace:version' ]);
build: {
files: [{
'dist/ng-file-upload.min.js': 'dist/ng-file-upload.js',
'dist/ng-file-upload-shim.min.js': 'dist/ng-file-upload-shim.js',
'dist/ng-file-upload-all.min.js': 'dist/ng-file-upload-all.js',
'dist/FileAPI.min.js': 'dist/FileAPI.js'
}]
}
},
copy: {
build: {
files: [{
expand: true,
cwd: 'dist/',
src: '*',
dest: 'demo/src/main/webapp/js/',
flatten: true,
filter: 'isFile'
}]
},
fileapi: {
files: {
'dist/FileAPI.flash.swf': 'src/FileAPI.flash.swf',
'dist/FileAPI.js': 'src/FileAPI.js'
}
},
bower: {
files: [{
expand: true,
cwd: 'dist/',
src: '*',
dest: '../angular-file-upload-bower/',
flatten: true,
filter: 'isFile'
}, {
expand: true,
cwd: 'dist/',
src: '*',
dest: '../angular-file-upload-shim-bower/',
flatten: true,
filter: 'isFile'
}]
}
},
serve: {
options: {
port: 9000
},
'path': 'demo/src/main/webapp'
},
watch: {
js: {
files: ['src/{,*/}*.js'],
tasks: ['jshint:all', 'concat:all', 'uglify', 'copy:build']
}
},
jshint: {
options: {
jshintrc: '.jshintrc',
reporter: require('jshint-stylish')
},
all: [
'Gruntfile.js',
'src/{,*/}*.js',
'!src/FileAPI*.*',
'test/spec/{,*/}*.js'
]
},
replace: {
version: {
src: ['nuget/Package.nuspec', '../angular-file-upload-bower/bower.json',
'../angular-file-upload-shim-bower/bower.json'
],
overwrite: true,
replacements: [{
from: /"version" *: *".*"/g,
to: '"version": "<%= pkg.version %>"'
}, {
from: /<version>.*<\/version>/g,
to: '<version><%= pkg.version %></version>'
}]
}
},
clean: {
dist: {
files: [{
dot: true,
src: [
'dist',
'!dist/.git*'
]
}]
}
}
});
grunt.registerTask('dev', ['jshint:all', 'concat:all', 'uglify', 'copy:build', 'watch']);
grunt.registerTask('default', ['jshint:all', 'clean:dist', 'concat:all',
'copy:fileapi', 'uglify', 'copy:build', 'copy:bower', 'replace:version']);
};
{
"name": "ng-file-upload",
"version": "4.2.4",
"version": "5.0.0",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-uglify": "~0.2.7",
"grunt": "^0.4.5",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-uglify": "^0.8.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-contrib-copy": "~0.4.1",
"grunt-text-replace": "~0.3.12",
"grunt-git": "~0.2.14"
"grunt-git": "~0.2.14",
"grunt-serve": "^0.1.6",
"jshint-stylish": "^1.0.0",
"load-grunt-tasks": "^3.1.0"
},
"dependencies": {
"grunt-contrib-concat": "~0.5.0"
},
"description": "ng-file-upload ===================",
"description": "An AngularJS directive for file upload using HTML5 with FileAPI polyfill for unsupported browsers",
"main": "dist/ng-file-upload-all.js",

@@ -16,0 +20,0 @@ "scripts": {

@@ -89,4 +89,3 @@ ng-file-upload

ng-model-rejected="rejFiles" // bind to dropped files that do not match the accept wildcard
ngf-change="fileSelected($files, $event)" // will be called upon files being selected
// you can use $scope.$watch('myFiles') instead
ngf-change="fileSelected($files, $event)" // called when files are selected or removed
ngf-multiple="true" or "false" // default false, allows selecting multiple files

@@ -102,6 +101,7 @@ ngf-capture="'camera'" or "'other'" // allows mobile devices to capture using camera

```html
All attributes are optional except ngf-drop and one of ng-model or ngf-change.
<div|button|ngf-drop|...
ngf-drop ng-model="myFiles" // binds the dropped files to the scope model
ng-model-rejected="rejFiles" // bind to dropped files that do not match the accept wildcard
ngf-change="fileDropped($files, $event, $rejectedFiles)" //called upon files being dropped
ngf-change="fileDropped($files, $event, $rejectedFiles)" //called when files being dropped
ngf-multiple="true" or "false" // default false, allows selecting multiple files.

@@ -108,0 +108,0 @@ ngf-accept="'.pdf,.jpg'" or "validate($file)" // function or comma separated wildcard to filter files allowed

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc