Skip to content

Commit

Permalink
fix/Js Package Dependencies (#999)
Browse files Browse the repository at this point in the history
* fix/Js Package Dependencies

* update babel-config

* release note
  • Loading branch information
ibelar authored Mar 18, 2020
1 parent b198817 commit 883f215
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 9 deletions.
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

0 comments on commit 883f215

Please sign in to comment.