]> git.r.bdr.sh - rbdr/serpentity/commitdiff
Bump version, require node 13, use cjs webpack
authorBen Beltran <redacted>
Mon, 9 Mar 2020 19:17:03 +0000 (14:17 -0500)
committerBen Beltran <redacted>
Mon, 9 Mar 2020 19:17:03 +0000 (14:17 -0500)
CHANGELOG.md
config/webpack.cjs [moved from config/webpack.js with 94% similarity]
package-lock.json
package.json

index b1c155a5c09e2e47899a8c19e3e3da11716a23bb..463119384865983bf6063d076a594abeeaca009e 100644 (file)
@@ -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
similarity index 94%
rename from config/webpack.js
rename to config/webpack.cjs
index b213d0c2381c8b91f10367be76cdffff7e75b335..a36c166886d5cc5c02b2823b3ada51e2b2a6cb52 100644 (file)
@@ -1,5 +1,4 @@
 const Path = require('path');
-const Webpack = require('webpack');
 
 module.exports = {
   entry: {
index d22c5ca234dadbe1f73a448606e643e9eb876c51..8da24b3ce383cb048e04e3d7e29ce53230eeb2f9 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@serpentity/serpentity",
-  "version": "3.0.1",
+  "version": "3.0.2",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {
index 2c2921f5ab06a420fe3aa6b01539258dbbef835c..f0d4d5b35ea80b1d73c6061b65334e9356dd3755 100644 (file)
@@ -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": [
     "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"
   },