-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fcd828
commit b2a98c4
Showing
7 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"description": "Implementation of idea language server in node.", | ||
"author": "Chris <[email protected]>", | ||
"license": "MIT", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"publisher": "ossph", | ||
"repository": { | ||
"type": "git", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "idea-language-server", | ||
"description": "Implementation of idea language server in node.", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"author": "Chris <[email protected]>", | ||
"license": "MIT", | ||
"engines": { | ||
|
@@ -12,7 +12,7 @@ | |
"url": "https://github.com/OSSPhilippines/idea" | ||
}, | ||
"dependencies": { | ||
"@ossph/idea-parser": "0.1.5", | ||
"@ossph/idea-parser": "0.1.6", | ||
"vscode-languageserver": "8.1.0", | ||
"vscode-languageserver-textdocument": "1.0.8" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@ossph/idea-parser", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"license": "MIT", | ||
"description": "Parses ideas to AST and readable JSON.", | ||
"author": "Chris <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@ossph/idea-transformer", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"license": "MIT", | ||
"description": "A programmatical command line interface used by projects and that calls on external transformers to make relevant code", | ||
"author": "Chris <[email protected]>", | ||
|
@@ -16,7 +16,7 @@ | |
"test": "nyc ts-mocha tests/*.test.ts" | ||
}, | ||
"dependencies": { | ||
"@ossph/idea-parser": "0.1.5" | ||
"@ossph/idea-parser": "0.1.6" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "4.3.5", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@ossph/idea", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"license": "MIT", | ||
"description": "An open source schema file standard and generator", | ||
"author": "Chris <[email protected]>", | ||
|
@@ -16,8 +16,8 @@ | |
"build:files": "cp ./README.md ./dist/ && cp ./package.json ./dist/ && cp ./LICENSE ./dist/" | ||
}, | ||
"dependencies": { | ||
"@ossph/idea-parser": "0.1.5", | ||
"@ossph/idea-transformer": "0.1.5" | ||
"@ossph/idea-parser": "0.1.6", | ||
"@ossph/idea-transformer": "0.1.6" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "20.2.5", | ||
|