Skip to content

fix/Js Package Dependencies #999

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions js/Release.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## Release note

### version 1.12.4 (2020-03-18)

- Update dependencie package
- @babel/cli from 7.8.3 to 7.8.7
- @bable/core from 7.8.3 to 7.8.7
- @babel/preset-env from 7.8.3 to 7.8.7
- @babel/polyfill from 7.8.3 to 7.8.7
- webpack from 4.35.3 to 4.42.0
- Update Babel config in order to use corejs v3

### version 1.12.3 (2020-02-11)

- Fix duplicate url encoding for reload-view and ajaxec plugins.
Expand Down
2 changes: 1 addition & 1 deletion js/babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const presets = [
"@babel/env",
{
targets: "> 1% , not dead",
"corejs": "2",
"corejs": { version: 3, proposals: true },
"useBuiltIns": "usage"
},
],
Expand Down
13 changes: 7 additions & 6 deletions js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "atkjs-ui",
"version": "1.12.3",
"version": "1.12.4",
"description": "Agile Toolkit Javascript library.",
"main": "lib/atkjs-ui.js",
"scripts": {
Expand All @@ -20,17 +20,18 @@
"homepage": "http://www.agiletoolkit.org/",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.35.3",
"serialize-javascript": "^3.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"@babel/polyfill": "^7.8.3",
"column-resizer": "^1.3.2",
"core-js": "^3.6.4",
"debounce": "^1.1.0",
"locutus": "^2.0.11",
"lodash.throttle": "^4.1.1",
Expand Down
4 changes: 2 additions & 2 deletions js/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ module.exports = env => {
resolve: {
alias: {'vue$' : 'vue/dist/vue.esm.js'},
modules: [
path.resolve('./src'),
path.join(__dirname, 'node_modules')
path.resolve(__dirname, 'src/'),
'node_modules'
],
extensions: [
'.json',
Expand Down