aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2020-03-09 14:17:03 -0500
committerBen Beltran <ben@nsovocal.com>2020-03-09 14:17:03 -0500
commit62bc93dd77eacab028c45f831e0746f64de8dd46 (patch)
tree73e4e56abc6e070f6b9618a13c360c1fe69e0366
parent3828c5670e97df8514e3dad23b3890e8d8939669 (diff)
Bump version, require node 13, use cjs webpack
-rw-r--r--CHANGELOG.md13
-rw-r--r--config/webpack.cjs (renamed from config/webpack.js)1
-rw-r--r--package-lock.json2
-rw-r--r--package.json9
4 files changed, 17 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b1c155a..4631193 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
+
+## [3.0.2] - 2020-03-09
+### Changed
+- Remove browserslist config as it was having even more trouble with parcel
+- Use CJS for webpack
+- Require node 13
+
+## [3.0.1] - 2020-03-09
+### Changed
+- Use default config for browserslist as it was having trouble with parcel
+
## [3.0.0] - 2020-03-09
### Changed
- Use module syntax
@@ -73,3 +84,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[2.0.0]: https://gitlab.com/serpentity/serpentity/compare/1.0.0...2.0.0
[2.1.0]: https://gitlab.com/serpentity/serpentity/compare/2.0.0...2.1.0
[3.0.0]: https://gitlab.com/serpentity/serpentity/compare/2.1.0...3.0.0
+[3.0.1]: https://gitlab.com/serpentity/serpentity/compare/3.0.0...3.0.1
+[3.0.2]: https://gitlab.com/serpentity/serpentity/compare/3.0.1...3.0.2
diff --git a/config/webpack.js b/config/webpack.cjs
index b213d0c..a36c166 100644
--- a/config/webpack.js
+++ b/config/webpack.cjs
@@ -1,5 +1,4 @@
const Path = require('path');
-const Webpack = require('webpack');
module.exports = {
entry: {
diff --git a/package-lock.json b/package-lock.json
index d22c5ca..8da24b3 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "@serpentity/serpentity",
- "version": "3.0.1",
+ "version": "3.0.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index 2c2921f..f0d4d5b 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "@serpentity/serpentity",
"description": "An Entity-Component-System Engine",
- "version": "3.0.1",
+ "version": "3.0.2",
"type": "module",
"license": "Apache-2.0",
"contributors": [
@@ -31,13 +31,10 @@
"webpack-cli": "^3.3.11"
},
"engines": {
- "node": ">= 12.0.0"
+ "node": ">= 13.0.0"
},
- "browserslist": [
- "defaults"
- ],
"scripts": {
- "build": "webpack --config ./config/webpack.js",
+ "build": "webpack --config ./config/webpack.cjs",
"lint": "eslint lib",
"test": "node test/integration.js"
},