Comparing version 0.5.0 to 0.6.0
# Changelog | ||
## v0.6.0 | ||
* Update dependencies. | ||
* Update CI configurations. | ||
* Migrate to webpack 5. | ||
--- | ||
## v0.5.0 | ||
@@ -5,0 +15,0 @@ |
{ | ||
"name": "liyad", | ||
"private": false, | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "Liyad (Lisp yet another DSL interpreter) is very small Lisp interpreter written in JavaScript.", | ||
@@ -28,32 +28,31 @@ "keywords": [ | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.11.6", | ||
"@babel/core": "^7.11.6", | ||
"@babel/preset-env": "^7.11.5", | ||
"@types/jasmine": "^3.5.14", | ||
"@types/node": "^14.10.1", | ||
"@types/react": "^16.9.49", | ||
"@babel/cli": "^7.12.1", | ||
"@babel/core": "^7.12.3", | ||
"@babel/preset-env": "^7.12.1", | ||
"@types/jasmine": "^3.6.0", | ||
"@types/node": "^14.14.2", | ||
"@types/react": "^16.9.53", | ||
"@types/react-dom": "^16.9.8", | ||
"@typescript-eslint/eslint-plugin": "^4.1.0", | ||
"@typescript-eslint/parser": "^4.1.0", | ||
"@typescript-eslint/eslint-plugin": "^4.5.0", | ||
"@typescript-eslint/parser": "^4.5.0", | ||
"babel-loader": "^8.1.0", | ||
"cross-env": "^7.0.2", | ||
"eslint": "^7.9.0", | ||
"jasmine": "^3.6.1", | ||
"jasmine-spec-reporter": "^5.0.2", | ||
"eslint": "^7.12.0", | ||
"jasmine": "^3.6.2", | ||
"jasmine-spec-reporter": "^6.0.0", | ||
"mkdirp": "^1.0.4", | ||
"npm-run-all": "^4.1.5", | ||
"react": "^16.13.1", | ||
"react-dom": "^16.13.1", | ||
"red-agate": "^0.4.0", | ||
"react": "^17.0.1", | ||
"react-dom": "^17.0.1", | ||
"red-agate": "^0.5.0", | ||
"reflect-metadata": "^0.1.13", | ||
"rimraf": "^3.0.2", | ||
"shx": "^0.3.2", | ||
"source-map-loader": "^1.1.0", | ||
"ts-loader": "^8.0.3", | ||
"source-map-loader": "^1.1.1", | ||
"ts-loader": "^8.0.7", | ||
"tslint": "^6.1.3", | ||
"typescript": "^4.0.2", | ||
"webpack": "^4.44.1", | ||
"webpack-cli": "^3.3.12" | ||
"typescript": "^4.0.3", | ||
"webpack": "^5.2.0", | ||
"webpack-cli": "^4.1.0" | ||
}, | ||
@@ -60,0 +59,0 @@ "scripts": { |
@@ -29,2 +29,28 @@ # Liyad | ||
> NOTICE: | ||
> Use with `webpack >= 5` | ||
> | ||
> If you get the error: | ||
> | ||
> ``` | ||
> Module not found: Error: Can't resolve '(importing/path/to/filename)' | ||
> in '(path/to/node_modules/path/to/dirname)' | ||
> Did you mean '(filename).js'?` | ||
> ``` | ||
> | ||
> Add following setting to your `webpack.config.js`. | ||
> | ||
> ```js | ||
> { | ||
> test: /\.m?js/, | ||
> resolve: { | ||
> fullySpecified: false, | ||
> }, | ||
> }, | ||
> ``` | ||
> | ||
> On `webpack >= 5`, the extension in the request is mandatory for it to be fully specified | ||
> if the origin is a '*.mjs' file or a '*.js' file where the package.json contains '"type": "module"'. | ||
## Install CLI | ||
@@ -31,0 +57,0 @@ |
Sorry, the diff of this file is not supported yet
4050144
1099