Comparing version 0.1.0 to 0.1.1
@@ -1,3 +0,7 @@ | ||
#### 0.1.0 / 2020-01-16 | ||
======================= | ||
## 0.1.1 / 2020-02-18 | ||
- [MISC] Replaced rollup-plugin-commonjs and rollup-plugin-node-resolve with @rollup/plugin-commonjs and @rollup/plugin-node-resolve. | ||
- [MISC] Updated dependencies to their latest versions. | ||
- [MISC] Changed CHANGELOG format. | ||
## 0.1.0 / 2020-01-16 | ||
- Initial commit |
{ | ||
"name": "collider2d", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "A 2D collision checker for modern games.", | ||
@@ -37,17 +37,17 @@ "main": "index.js", | ||
"devDependencies": { | ||
"@babel/cli": "^7.8.3", | ||
"@babel/core": "^7.8.3", | ||
"@babel/cli": "^7.8.4", | ||
"@babel/core": "^7.8.4", | ||
"@babel/plugin-proposal-class-properties": "^7.8.3", | ||
"@babel/plugin-proposal-numeric-separator": "^7.8.3", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.8.3", | ||
"@babel/preset-env": "^7.8.3", | ||
"@babel/preset-env": "^7.8.4", | ||
"@babel/preset-typescript": "^7.8.3", | ||
"@rollup/plugin-commonjs": "^11.0.2", | ||
"@rollup/plugin-node-resolve": "^7.1.1", | ||
"chai": "^4.2.0", | ||
"mocha": "^7.0.0", | ||
"rollup": "^1.29.0", | ||
"mocha": "^7.0.1", | ||
"rollup": "^1.31.1", | ||
"rollup-plugin-babel": "^4.3.3", | ||
"rollup-plugin-commonjs": "^10.1.0", | ||
"rollup-plugin-node-resolve": "^5.2.0", | ||
"typescript": "^3.7.5" | ||
} | ||
} |
@@ -5,4 +5,4 @@ 'use strict' | ||
import babel from 'rollup-plugin-babel'; | ||
import commonjs from 'rollup-plugin-commonjs'; | ||
import resolve from 'rollup-plugin-node-resolve'; | ||
import commonjs from '@rollup/plugin-commonjs'; | ||
import resolve from '@rollup/plugin-node-resolve'; | ||
@@ -9,0 +9,0 @@ const extensions = ['.js', '.jsx', '.ts', '.tsx']; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
370680