add package.json
This commit is contained in:
parent
b300cdf422
commit
bda9424d37
|
|
@ -22,7 +22,7 @@ export default {
|
||||||
//config.ori
|
//config.ori
|
||||||
{
|
{
|
||||||
hello = "world"
|
hello = "world"
|
||||||
foo.handler = ./dj.handler.js
|
foo.handler = foo.handler.js
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
hello = "world"
|
hello = "world"
|
||||||
foo.handler = ./dj.handler.js
|
foo.handler = foo.handler.js
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
//I believe this is not being used, because in doctree.js, isUnpackable is false, and toString is not exported by @weborigami/origami anymore ... ?
|
//I believe this is not being used at all, because toString is not exported by @weborigami/origami anymore ... ?
|
||||||
import { toString } from "@weborigami/origami";
|
import { toString } from "@weborigami/origami";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"name": "ori-handler-test",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "Following the [docs](https://weborigami.org/language/filetypes#custom-file-types), I have created a file `foobar.foo` and a handler `foo.handler.js`.",
|
||||||
|
"main": "foo.handler.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git:hans/ori-handler-test"
|
||||||
|
},
|
||||||
|
"keywords": [],
|
||||||
|
"author": "",
|
||||||
|
"license": "ISC",
|
||||||
|
"type": "commonjs"
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue