Switching to Version 1.3.1

This commit is contained in:
Martin Karkowski 2022-08-16 10:02:42 +02:00
parent ae2204d470
commit 8ce9334eab
4 changed files with 13 additions and 9 deletions

View File

@ -161,4 +161,9 @@ Inital commit, which is working with the browser
- Fixes: - Fixes:
- Small Syntax-Fixes for better parsing. - Small Syntax-Fixes for better parsing.
- Added: - Added:
-`py-helpers`: Added a Parser, which will create a Tree and then will be used to transpile the coresponding ast. -`py-helpers`: Added a Parser, which will create a Tree and then will be used to transpile the coresponding ast.
# 1.3.1
- Fixes:
- `py-helpers`: Now using correct elements.
- Small comments etc.

View File

@ -1 +1 @@
1.3.0 1.3.1

View File

@ -332,7 +332,7 @@ export async function runNopeBackend(
} }
let _closing = false; let _closing = false;
const _dispose = (reason, p) => { const _dispose = (reason = null, p = null) => {
if (_closing) { if (_closing) {
return; return;
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "nope", "name": "nope",
"version": "1.2.2", "version": "1.3.1",
"description": "NoPE Runtime for Nodejs. For Browser-Support please use nope-browser", "description": "NoPE Runtime for Nodejs. For Browser-Support please use nope-browser",
"files": [ "files": [
"dist-nodejs/**/*", "dist-nodejs/**/*",
@ -95,12 +95,11 @@
"webpack": "^4.46.0", "webpack": "^4.46.0",
"webpack-cli": "^4.8.0" "webpack-cli": "^4.8.0"
}, },
"prettier": {
"arrowParens": "always"
},
"bin": { "bin": {
"nope-js": "./bin/nope" "nope-js": "./bin/nope"
}, },
"main": "dist-nodejs/index.nodejs.js", "main": "dist-nodejs/index.nodejs.js"
"prettier": {
"arrowParens": "always"
}
} }