Skip to content

Commit

Permalink
fix(build): move syntax and language folders out of source folder
Browse files Browse the repository at this point in the history
  • Loading branch information
krishna-acondy committed Mar 15, 2021
1 parent c2984fb commit a11660d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
File renamed without changes.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
"extensions": [
".sas"
],
"configuration": "./src/languages/sas.json"
"configuration": "./languages/sas.json"
}
],
"grammars": [
{
"language": "sas",
"scopeName": "source.sas",
"path": "./src/syntaxes/sas.tmLanguage.json"
"path": "./syntaxes/sas.tmLanguage.json"
}
],
"iconThemes": [
Expand Down Expand Up @@ -99,12 +99,13 @@
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./ && cp -r ./themes/ ./out/themes/",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"semantic-release": "semantic-release -d"
"semantic-release": "semantic-release -d",
"package:lib": "vsce package"
},
"devDependencies": {
"@types/glob": "^7.1.3",
Expand Down
File renamed without changes.

0 comments on commit a11660d

Please sign in to comment.