Merge branch 'v3-dev' into v3-dev

pull/2153/head
Raphael Jackstadt 2019-07-13 13:04:13 +02:00 committed by GitHub
commit 7c959812ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 9 deletions

1
.gitignore vendored
View File

@ -11,3 +11,4 @@ ad.js
TODO TODO
test.html test.html
.vscode/ .vscode/
.vs/

View File

@ -1,6 +1,6 @@
import babel from 'rollup-plugin-babel' import babel from 'rollup-plugin-babel'
const pkg = require('./package') const pkg = require('../../package')
const year = new Date().getFullYear() const year = new Date().getFullYear()
const globals = { const globals = {
@ -22,7 +22,8 @@ export default {
}, },
plugins: [ plugins: [
babel({ babel({
exclude: 'node_modules/**' exclude: 'node_modules/**',
externalHelpers: true
}) })
] ]
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "almasaeed2010/adminlte", "name": "almasaeed2010/adminlte",
"description": "AdminLTE - admin control panel and dashboard that's based on Bootstrap 3", "description": "AdminLTE - admin control panel and dashboard that's based on Bootstrap 4",
"homepage": "http://adminlte.io/", "homepage": "http://adminlte.io/",
"keywords": [ "keywords": [
"css", "css",

View File

@ -13,7 +13,7 @@
"compile": "npm-run-all --parallel js css", "compile": "npm-run-all --parallel js css",
"dev": "npm-run-all --parallel watch sync", "dev": "npm-run-all --parallel watch sync",
"js": "npm-run-all --sequential js-compile js-minify", "js": "npm-run-all --sequential js-compile js-minify",
"js-compile": "rollup -c --sourcemap", "js-compile": "rollup --config build/config/rollup.config.js --sourcemap",
"js-minify": "terser --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/adminlte.js.map,includeSources,url=adminlte.min.js.map\" --output dist/js/adminlte.min.js dist/js/adminlte.js", "js-minify": "terser --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/adminlte.js.map,includeSources,url=adminlte.min.js.map\" --output dist/js/adminlte.min.js dist/js/adminlte.js",
"production": "npm-run-all --parallel compile && node build/npm/Publish.js -v", "production": "npm-run-all --parallel compile && node build/npm/Publish.js -v",
"plugins": "node build/npm/Publish.js -v", "plugins": "node build/npm/Publish.js -v",
@ -83,10 +83,10 @@
"toastr": "^2.1.4" "toastr": "^2.1.4"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.4.4", "@babel/cli": "^7.5.0",
"@babel/core": "^7.4.5", "@babel/core": "^7.5.4",
"@babel/plugin-external-helpers": "^7.2.0", "@babel/plugin-external-helpers": "^7.2.0",
"@babel/preset-env": "^7.4.5", "@babel/preset-env": "^7.5.4",
"autoprefixer": "^9.6.0", "autoprefixer": "^9.6.0",
"babel-eslint": "^8.2.6", "babel-eslint": "^8.2.6",
"browser-sync": "^2.26.7", "browser-sync": "^2.26.7",
@ -102,8 +102,8 @@
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"path": "^0.12.7", "path": "^0.12.7",
"postcss-cli": "^5.0.1", "postcss-cli": "^5.0.1",
"rollup": "^1.15.1", "rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.2", "rollup-plugin-babel": "^4.3.3",
"style-loader": "^0.19.1", "style-loader": "^0.19.1",
"set-value": "^3.0.1", "set-value": "^3.0.1",
"terser": "^4.0.0" "terser": "^4.0.0"