-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update to webpack 5, fix upstream role='role' tag removal
- Loading branch information
Showing
10 changed files
with
19,048 additions
and
20,620 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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,4 +1,3 @@ | ||
{ | ||
"/index.js": "/index.js", | ||
"/index.js.map": "/index.js.map" | ||
"/index.js": "/index.js" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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,4 +1,3 @@ | ||
{ | ||
"/index.js": "/index.js?id=c3150f74252920b08c5b", | ||
"/index.js.map": "/index.js.map?id=e18a32d01cac4489a1f2" | ||
"/index.js": "/index.js?id=c2bfed2c49b23d12ebcc" | ||
} |
Large diffs are not rendered by default.
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": "vue-datatables-net", | ||
"description": "Vue jQuery DataTables.net wrapper component", | ||
"version": "1.3.0", | ||
"version": "1.4.0", | ||
"author": "[email protected]", | ||
"license": "MIT", | ||
"main": "lib/index.js", | ||
|
@@ -13,13 +13,11 @@ | |
"url": "https://github.com/niiknow/vue-datatables-net.git" | ||
}, | ||
"scripts": { | ||
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
"watch-poll": "npm run watch -- --watch-poll", | ||
"watch": "mix watch", | ||
"watch-poll": "mix watch -- --watch-options-poll=1000", | ||
"watch-late-schema": "cross-env EXAMPLE=late-schema npm run watch", | ||
"build": "npm run production", | ||
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
"test": "cross-env NODE_ENV=test mocha-webpack --webpack-config=node_modules/laravel-mix/setup/webpack.config.js --require tests/setup.js tests/**/*.spec.js", | ||
"watch-test": "cross-env NODE_ENV=test mocha-webpack --webpack-config=node_modules/laravel-mix/setup/webpack.config.js --watch --require tests/setup.js tests/**/*.spec.js", | ||
"production": "mix --production", | ||
"lint": "eslint --ext .js,.vue src/ example/app.*", | ||
"lint-fix": "eslint --fix --ext .js,.vue src/ example/app.*", | ||
"check-outdated": "npm outdated" | ||
|
@@ -34,30 +32,30 @@ | |
"vue": ">=2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.10.4", | ||
"@babel/plugin-syntax-dynamic-import": "^7.8.3", | ||
"@babel/core": "^7.12.10", | ||
"@babel/preset-env": "^7.12.11", | ||
"babel-eslint": "^10.1.0", | ||
"bootstrap": "^4.5.0", | ||
"browser-sync": "^2.26.7", | ||
"browser-sync-webpack-plugin": "^2.0.1", | ||
"cross-env": "^5.2.1", | ||
"css-loader": "^2.1.0", | ||
"datatables.net-bs4": "^1.10.21", | ||
"datatables.net-buttons-bs4": "^1.6.2", | ||
"datatables.net-responsive": "^2.2.5", | ||
"datatables.net-responsive-bs4": "^2.2.5", | ||
"babel-loader": "^8.2.2", | ||
"bootstrap": "^4.5.3", | ||
"browser-sync": "^2.26.13", | ||
"browser-sync-webpack-plugin": "^2.3.0", | ||
"cross-env": "^7.0.3", | ||
"css-loader": "^5.0.1", | ||
"datatables.net-bs4": "^1.10.23", | ||
"datatables.net-buttons-bs4": "^1.6.5", | ||
"datatables.net-responsive": "^2.2.7", | ||
"datatables.net-responsive-bs4": "^2.2.7", | ||
"datatables.net-select-bs4": "^1.3.1", | ||
"eslint": "^5.16.0", | ||
"eslint-config-prettier": "^4.3.0", | ||
"eslint": "^7.17.0", | ||
"eslint-config-prettier": "^7.1.0", | ||
"eslint-friendly-formatter": "^4.0.1", | ||
"eslint-loader": "^2.2.1", | ||
"eslint-plugin-import": "^2.22.0", | ||
"eslint-plugin-vue": "^5.2.3", | ||
"file-loader": "^3.0.1", | ||
"jquery": "^3.5.1", | ||
"laravel-mix": "^5.0.9", | ||
"vue": "^2.6.11", | ||
"vue-loader": "^15.9.3", | ||
"vue-template-compiler": "^2.6.11" | ||
"eslint-plugin-vue": "^7.4.1", | ||
"eslint-webpack-plugin": "^2.4.1", | ||
"file-loader": "^6.2.0", | ||
"laravel-mix": "^6.0.6", | ||
"vue": "^2.6.12", | ||
"vue-loader": "^15.9.6", | ||
"vue-template-compiler": "^2.6.12", | ||
"webpack": "^5.12.0" | ||
} | ||
} |
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
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