-
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.
fixing Could not find node_modules #1 1h
- Loading branch information
1 parent
de236c7
commit c8a46d9
Showing
7 changed files
with
12 additions
and
12 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
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.1", | ||
"version": "0.1.2", | ||
"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.1", | ||
"version": "0.1.2", | ||
"author": "Chris <[email protected]>", | ||
"license": "MIT", | ||
"engines": { | ||
|
@@ -12,7 +12,7 @@ | |
"url": "https://github.com/OSSPhilippines/idea" | ||
}, | ||
"dependencies": { | ||
"@ossph/idea-parser": "0.1.1", | ||
"@ossph/idea-parser": "0.1.2", | ||
"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.1", | ||
"version": "0.1.2", | ||
"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.1", | ||
"version": "0.1.2", | ||
"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]>", | ||
|
@@ -15,7 +15,7 @@ | |
"build:files": "cp ./README.md ./dist/ && cp ./package.json ./dist/ && cp ./LICENSE ./dist/" | ||
}, | ||
"dependencies": { | ||
"@ossph/idea-parser": "0.1.1" | ||
"@ossph/idea-parser": "0.1.2" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "20.2.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
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.1", | ||
"version": "0.1.2", | ||
"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.1", | ||
"@ossph/idea-transformer": "0.1.1" | ||
"@ossph/idea-parser": "0.1.2", | ||
"@ossph/idea-transformer": "0.1.2" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "20.2.5", | ||
|