Skip to content
Merged
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: 5 additions & 1 deletion packages/coln-js-runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@
"name": "@coln-project/runtime",
"version": "0.1.0",
"private": true,
"author": "Coln contributors",
"type": "module",
"license": "(Apache-2.0 OR MIT)",
"files": [
"dist"
"dist",
"LICENSES"
],
"scripts": {
"copy-license": "cp -r ../../LICENSES LICENSES",
"build": "wasm-bodge build",
"test": "tsx --test tests/test_id_resolution.ts"
},
Expand Down
24 changes: 0 additions & 24 deletions packages/coln-ls/client/LICENSE

This file was deleted.

5 changes: 4 additions & 1 deletion packages/coln-ls/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
"name": "coln-ls-client",
"displayName": "Coln LSP Client",
"description": "VS Code/Cursor client for the Coln language server",
"author": "Coln contributors",
"version": "0.1.0",
"publisher": "coln-developers",
"engines": { "vscode": "^1.85.0" },
"categories": ["Programming Languages"],
"activationEvents": ["onLanguage:coln"],
"main": "out/extension.js",
"license": "(Apache-2.0 OR MIT)",
"contributes": {
"languages": [
{
Expand All @@ -33,7 +35,8 @@
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"vscode:prepublish": "npm run copy-license && npm run compile",
"copy-license": "cp -r ../../../LICENSES LICENSES",
"compile": "tsc -p .",
"watch": "tsc -w -p ."
},
Expand Down
Loading