Skip to content
This repository was archived by the owner on Jan 4, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"plugins": [
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-proposal-optional-chaining"
]
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ npm-debug.log
node_modules/
server/index.js
server/test.js
server/compiled
server/dist
client/index.js
client/compiled
client/dist
tmp/
*.vsix
4 changes: 3 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
test/
test/
client/compiled
server/compiled
9 changes: 9 additions & 0 deletions Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ npm install -g lerna # yarn global add lerna
npm run dev:bootstrap # yarn dev:bootstrap
```

### Compiling the code

To compile the imba code to javascript, use the `build` script in the root
directory:

```
npm run build
```

### Creating a Local Version

While you can build your changes manually and copy over files into your
Expand Down
1 change: 0 additions & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
},
"main": "dist/src/index.js",
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"vscode-languageclient": "^6.1.1"
Expand Down
Loading