Skip to content

Commit

Permalink
Updated NPM packages to their latest available version.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanlinat committed Oct 2, 2019
1 parent 021ad40 commit 098c775
Show file tree
Hide file tree
Showing 11 changed files with 2,485 additions and 2,614 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Jonathan Linat <https://github.com/jonathanlinat>
Copyright (c) 2018-2019 Jonathan Linat <https://github.com/jonathanlinat>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5,032 changes: 2,450 additions & 2,582 deletions package-lock.json

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "An ES6 implementation of the Buffon's needle classic Monte Carlo simulation.",
"author": "Jonathan Linat (https://github.com/jonathanlinat)",
"homepage": "https://github.com/jonathanlinat/es6-experiments-series-buffons-needle",
"version": "1.0.6",
"version": "1.0.7",
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -43,30 +43,30 @@
"javascript"
],
"devDependencies": {
"@babel/core": "^7.1.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"@babel/core": "^7.6.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^1.0.1",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.10.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.1.0",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^2.1.2",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
}
}
2 changes: 1 addition & 1 deletion src/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* MIT License
*
* Copyright (c) 2018 Jonathan Linat <https://github.com/jonathanlinat>
* Copyright (c) 2018-2019 Jonathan Linat <https://github.com/jonathanlinat>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/app.sass
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* MIT License
*
* Copyright (c) 2018 Jonathan Linat <https://github.com/jonathanlinat>
* Copyright (c) 2018-2019 Jonathan Linat <https://github.com/jonathanlinat>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* MIT License
*
* Copyright (c) 2018 Jonathan Linat <https://github.com/jonathanlinat>
* Copyright (c) 2018-2019 Jonathan Linat <https://github.com/jonathanlinat>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/modules/elements/linesegment.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* MIT License
*
* Copyright (c) 2018 Jonathan Linat <https://github.com/jonathanlinat>
* Copyright (c) 2018-2019 Jonathan Linat <https://github.com/jonathanlinat>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/modules/utils/canvas.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* MIT License
*
* Copyright (c) 2018 Jonathan Linat <https://github.com/jonathanlinat>
* Copyright (c) 2018-2019 Jonathan Linat <https://github.com/jonathanlinat>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/modules/utils/drawing.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* MIT License
*
* Copyright (c) 2018 Jonathan Linat <https://github.com/jonathanlinat>
* Copyright (c) 2018-2019 Jonathan Linat <https://github.com/jonathanlinat>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/modules/utils/geometry.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* MIT License
*
* Copyright (c) 2018 Jonathan Linat <https://github.com/jonathanlinat>
* Copyright (c) 2018-2019 Jonathan Linat <https://github.com/jonathanlinat>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 5 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const TerserPlugin = require('terser-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin')
const HtmlWebPackPlugin = require('html-webpack-plugin')
const CleanWebpackPlugin = require('clean-webpack-plugin')
const { CleanWebpackPlugin } = require('clean-webpack-plugin')
const webpack = require('webpack')

module.exports = (env, options) => {
Expand All @@ -20,13 +20,16 @@ module.exports = (env, options) => {
src + '/index.html'
]
},
output: {
path: dist
},
devServer: {
host: '127.0.0.1',
open: true,
hot: true
},
plugins: [
new CleanWebpackPlugin([dist]),
new CleanWebpackPlugin(),
new MiniCssExtractPlugin(),
new HtmlWebPackPlugin({
template: src + '/index.html'
Expand Down

0 comments on commit 098c775

Please sign in to comment.