feat: brun-lang package init

This commit is contained in:
Anoop M D 2023-01-12 23:46:01 +05:30
parent 61dbca3243
commit f0269069d2
6 changed files with 32 additions and 1 deletions

View File

@ -67,7 +67,8 @@ vars
/vars
response-example
name Created
name Created
status 201
headers
1 content-type "Content Type" application/json
1 accept-language "" en-US,en;q=0.9,hi;q=0.8

View File

@ -68,6 +68,7 @@ vars
response-example
name Created
status 201
headers
1 content-type "Content Type" application/json
1 accept-language "" en-US,en;q=0.9,hi;q=0.8

7
packages/bruno-lang/.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
node_modules
web
out
pnpm-lock.yaml
package-lock.json
yarn.lock

View File

@ -0,0 +1,12 @@
{
"name": "@usebruno/bruno-lang",
"version": "0.1.0",
"main": "src/index.js",
"files": [
"src",
"package.json"
],
"scripts": {
"test": "jest"
}
}

View File

@ -0,0 +1,3 @@
# bruno-lang
The language utils for working with `.bru` files

View File

@ -0,0 +1,7 @@
const bruToJson = (input) => {
};
export {
bruToJson
};