mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-21 15:33:11 +01:00
feat: brun-lang package init
This commit is contained in:
parent
61dbca3243
commit
f0269069d2
@ -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
|
||||
|
@ -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
7
packages/bruno-lang/.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
node_modules
|
||||
web
|
||||
out
|
||||
|
||||
pnpm-lock.yaml
|
||||
package-lock.json
|
||||
yarn.lock
|
12
packages/bruno-lang/package.json
Normal file
12
packages/bruno-lang/package.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "@usebruno/bruno-lang",
|
||||
"version": "0.1.0",
|
||||
"main": "src/index.js",
|
||||
"files": [
|
||||
"src",
|
||||
"package.json"
|
||||
],
|
||||
"scripts": {
|
||||
"test": "jest"
|
||||
}
|
||||
}
|
3
packages/bruno-lang/readme.md
Normal file
3
packages/bruno-lang/readme.md
Normal file
@ -0,0 +1,3 @@
|
||||
# bruno-lang
|
||||
|
||||
The language utils for working with `.bru` files
|
7
packages/bruno-lang/src/index.js
Normal file
7
packages/bruno-lang/src/index.js
Normal file
@ -0,0 +1,7 @@
|
||||
const bruToJson = (input) => {
|
||||
};
|
||||
|
||||
|
||||
export {
|
||||
bruToJson
|
||||
};
|
Loading…
Reference in New Issue
Block a user