forked from jibe914/Bootstrap-Confirmation
-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed minified files
- Loading branch information
Showing
7 changed files
with
39 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "bootstrap-confirmation2", | ||
"version": "4.1.0", | ||
"homepage": "http://bootstrap-confirmation.js.org", | ||
"version": "4.2.0", | ||
"homepage": "https://bootstrap-confirmation.js.org", | ||
"description": "Bootstrap plugin for on-place confirm boxes using Popover", | ||
"license": "Apache-2.0", | ||
"authors": [ | ||
|
@@ -12,7 +12,7 @@ | |
{ | ||
"name": "Damien \"Mistic\" Sorel", | ||
"email": "[email protected]", | ||
"homepage": "http://www.strangeplanet.fr" | ||
"homepage": "https://www.strangeplanet.fr" | ||
} | ||
], | ||
"main": "dist/bootstrap-confirmation.js", | ||
|
@@ -26,7 +26,7 @@ | |
"popup" | ||
], | ||
"peerDependencies": { | ||
"bootstrap": ">=4.0.0", | ||
"bootstrap": "^4.0.0", | ||
"jquery": "1.9.1 - 3", | ||
"popper.js": "^1.12.9" | ||
}, | ||
|
@@ -46,8 +46,7 @@ | |
"popper.js": "^1.12.9", | ||
"rollup": "^2.0.2", | ||
"rollup-plugin-babel": "^4.2.0", | ||
"rollup-plugin-replace": "^2.0.0", | ||
"uglify-js": "^3.5.15" | ||
"rollup-plugin-replace": "^2.0.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -58,9 +57,7 @@ | |
}, | ||
"scripts": { | ||
"compile": "rollup --config rollup.config.js --file dist/bootstrap-confirmation.js src/confirmation.js", | ||
"dist": "npm run compile && npm run minify", | ||
"lint": "eslint src", | ||
"minify": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/bootstrap-confirmation.js.map,includeSources,url=bootstrap-confirmation.min.js.map\" --output dist/bootstrap-confirmation.min.js dist/bootstrap-confirmation.js", | ||
"server": "live-server --watch=dist,example --open=example", | ||
"start": "npm run compile && npm-run-all --parallel watch server", | ||
"test": "npm run lint", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,15 @@ export default { | |
format : 'umd', | ||
name : 'bootstrap-confirmation', | ||
sourcemap: true, | ||
interop : false, | ||
exports : 'none', | ||
globals : { | ||
'jquery': 'jQuery' | ||
}, | ||
banner : `/*! | ||
* Bootstrap Confirmation (v${pkg.version}) | ||
* @copyright 2013 Nimit Suwannagate <[email protected]> | ||
* @copyright 2014-2018 Damien "Mistic" Sorel <[email protected]> | ||
* @copyright 2014-${(new Date()).getFullYear()} Damien "Mistic" Sorel <[email protected]> | ||
* @licence Apache License, Version 2.0 | ||
*/` | ||
}, | ||
|