Comparing version 0.3.1 to 0.3.2
{ | ||
"name": "liyad", | ||
"private": false, | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"description": "Liyad (Lisp yet another DSL interpreter) is very small Lisp interpreter written in JavaScript.", | ||
@@ -30,8 +30,8 @@ "keywords": [ | ||
"devDependencies": { | ||
"@babel/cli": "^7.7.4", | ||
"@babel/core": "^7.7.4", | ||
"@babel/preset-env": "^7.7.4", | ||
"@babel/cli": "^7.7.5", | ||
"@babel/core": "^7.7.5", | ||
"@babel/preset-env": "^7.7.6", | ||
"@types/jasmine": "^3.5.0", | ||
"@types/node": "^12.12.14", | ||
"@types/react": "^16.9.13", | ||
"@types/node": "^12.12.17", | ||
"@types/react": "^16.9.16", | ||
"@types/react-dom": "^16.9.4", | ||
@@ -47,3 +47,3 @@ "babel-loader": "^8.0.6", | ||
"react-dom": "^16.12.0", | ||
"red-agate": "^0.2.19", | ||
"red-agate": "^0.2.20", | ||
"reflect-metadata": "^0.1.13", | ||
@@ -55,3 +55,3 @@ "rimraf": "^3.0.0", | ||
"tslint": "^5.20.1", | ||
"typescript": "^3.7.2", | ||
"typescript": "^3.7.3", | ||
"webpack": "^4.41.2", | ||
@@ -80,3 +80,3 @@ "webpack-cli": "^3.3.10" | ||
"test": "jasmine", | ||
"prepublishOnly": "run-s clean build test" | ||
"prepublishOnly": "run-s clean build test lint" | ||
}, | ||
@@ -83,0 +83,0 @@ "repository": { |
@@ -339,2 +339,4 @@ # Liyad | ||
#### `lisp` preset interpreter: | ||
```lisp | ||
@@ -348,2 +350,19 @@ """ | ||
```lisp | ||
($concat | ||
" | ||
Hello, Liyad! | ||
" | ||
) | ||
``` | ||
#### `LSX` preset interpreter: | ||
```lisp | ||
""" | ||
Hello, Liyad! | ||
""" | ||
``` | ||
is equivalent to: | ||
```lisp | ||
(Template | ||
@@ -356,2 +375,4 @@ " | ||
> `Template` on the `LSX` preset interpreter, it is mapped to the function passed by `LsxConfig.JsxFragment`. | ||
> See also: [Fragments (React)](https://reactjs.org/docs/fragments.html), [Template (RedAgate)](https://github.com/shellyln/red-agate/tree/master/packages/red-agate#standard-tag-libs). | ||
@@ -358,0 +379,0 @@ ---- |
Sorry, the diff of this file is not supported yet
1960159
1071