From: Ben Beltran Date: Mon, 9 Mar 2020 19:17:03 +0000 (-0500) Subject: Bump version, require node 13, use cjs webpack X-Git-Tag: 3.0.2^2 X-Git-Url: https://git.r.bdr.sh/rbdr/serpentity/commitdiff_plain/62bc93dd77eacab028c45f831e0746f64de8dd46?hp=3828c5670e97df8514e3dad23b3890e8d8939669 Bump version, require node 13, use cjs webpack --- 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 similarity index 94% rename from config/webpack.js rename to 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" },