-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
major structural changes move to single project
- Loading branch information
Amir Arad
authored
Feb 20, 2018
1 parent
7eb300a
commit ea7cee8
Showing
251 changed files
with
3,444 additions
and
18,269 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 |
---|---|---|
|
@@ -64,3 +64,4 @@ typings/ | |
|
||
# dotenv environment variables file | ||
.env | ||
*.vsix |
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,30 +1,19 @@ | ||
language: node_js | ||
|
||
sudo: false | ||
|
||
node_js: | ||
- 9 | ||
- 8 | ||
|
||
cache: | ||
yarn: true | ||
|
||
os: | ||
- osx | ||
- linux | ||
|
||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- libsecret-1-dev | ||
- g++-4.9 | ||
|
||
before_install: | ||
- if [ $TRAVIS_OS_NAME == "linux" ]; then | ||
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0; | ||
sh -e /etc/init.d/xvfb start; | ||
sleep 3; | ||
fi | ||
|
||
cache: | ||
yarn: true | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"version": "0.1.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch Extension", | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"args": [ | ||
"${workspaceRoot}/fixtures/demo", | ||
"--extensionDevelopmentPath=${workspaceRoot}" | ||
], | ||
"stopOnEntry": false, | ||
"sourceMaps": true, | ||
"preLaunchTask": "compile" | ||
}, | ||
{ | ||
"name": "Attach to running server", | ||
"type": "node", | ||
"request": "attach", | ||
"sourceMaps": true, | ||
"outFiles": [ | ||
"${workspaceRoot}/dist/src/server/**/*.js" | ||
], | ||
"protocol": "inspector" | ||
}, | ||
{ | ||
"name": "Test e2e", | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"args": [ | ||
"${workspaceRoot}/fixtures/e2e-cases", | ||
"--extensionDevelopmentPath=${workspaceRoot}", | ||
"--extensionTestsPath=${workspaceRoot}/dist/test/e2e" | ||
], | ||
"stopOnEntry": false, | ||
"sourceMaps": true, | ||
"preLaunchTask": "compile" | ||
}, | ||
{ | ||
"name": "Test server", | ||
"request": "launch", | ||
"type": "node", | ||
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", | ||
"stopOnEntry": false, | ||
"args": [ | ||
"--require", | ||
"ts-node/register", | ||
"test/server/**/*.spec.ts" | ||
], | ||
"cwd": "${workspaceRoot}", | ||
"protocol": "inspector" | ||
} | ||
] | ||
} |
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Available variables which can be used inside of strings. | ||
// ${workspaceRoot}: the root folder of the team | ||
// ${file}: the current opened file | ||
// ${fileBasename}: the current opened file's basename | ||
// ${fileDirname}: the current opened file's dirname | ||
// ${fileExtname}: the current opened file's extension | ||
// ${cwd}: the current working directory of the spawned process | ||
|
||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"identifier": "compile", | ||
"type": "npm", | ||
"script": "build", | ||
"problemMatcher": [ | ||
"$tsc-watch" | ||
] | ||
} | ||
] | ||
} |
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
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,2 +1,2 @@ | ||
buildcmd: "build" | ||
testcmd: "test:ci" | ||
testcmd: "test" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,32 +1,118 @@ | ||
{ | ||
"name": "stylable-intelligence", | ||
"main": "./dist/src/index.js", | ||
"types": "./dist/src/index.d.ts", | ||
"license": "MIT", | ||
"version": "0.0.3", | ||
"description": "Stylable Language Services", | ||
"scripts": { | ||
"postinstall": "lerna bootstrap", | ||
"test": "lerna run test", | ||
"build": "echo Not Implemented", | ||
"test:node": "npm run test", | ||
"test:ci": "npm run test" | ||
"reset": "yarn clear && rimraf node_modules && yarn install && yarn test", | ||
"clear": "rimraf dist", | ||
"build": "tsc -d", | ||
"install": "node ./node_modules/vscode/bin/install", | ||
"test": "yarn test:server && yarn build && yarn test:e2e", | ||
"test:e2e": "node ./run-test", | ||
"test:server": "mocha --require ts-node/register test/**/*.spec.ts", | ||
"test:ci": "mocha --require ts-node/register --reporter mocha-env-reporter test/**/*.spec.ts && node ./run-test" | ||
}, | ||
"dependencies": { | ||
"bignumber": "^1.1.0", | ||
"css-selector-tokenizer": "^0.7.0", | ||
"doctrine": "^2.1.0", | ||
"glob": "^7.1.2", | ||
"htap": "^1.0.3", | ||
"ipaddr": "^0.0.9", | ||
"kissfs": "^0.5.3", | ||
"lodash": "^4.17.5", | ||
"pkg-dir": "^2.0.0", | ||
"postcss": "^6.0.17", | ||
"postcss-selector-parser": "^3.1.1", | ||
"postcss-value-parser": "^3.3.0", | ||
"stylable": "^5.1.3", | ||
"tslib": "^1.9.0", | ||
"typescript": "^2.6.2", | ||
"vscode": "^1.1.10", | ||
"vscode-css-languageservice": "3.0.5", | ||
"vscode-languageclient": "^3.5.0", | ||
"vscode-languageserver": "^3.5.0" | ||
}, | ||
"devDependencies": { | ||
"lerna": "^2.8.0", | ||
"typescript": "~2.6.2", | ||
"@types/autobahn": "^0.9.38", | ||
"@types/chai": "^4.1.2", | ||
"@types/chai-subset": "^1.3.1", | ||
"@types/glob": "^5.0.35", | ||
"@types/lodash": "^4.14.102", | ||
"@types/mocha": "^2.2.48", | ||
"@types/node": "8", | ||
"@types/pkg-dir": "^2.0.0", | ||
"@types/sinon": "^4.1.3", | ||
"@types/sinon-chai": "^2.7.29", | ||
"chai": "^4.1.2", | ||
"chai-subset": "^1.6.0", | ||
"concurrently": "^3.5.1", | ||
"glob": "^7.1.2", | ||
"mocha": "^5.0.1", | ||
"mocha-env-reporter": "^3.0.0", | ||
"mocha-loader": "^1.1.3", | ||
"ncp": "^2.0.0", | ||
"polished": "^1.9.2", | ||
"rimraf": "^2.6.2", | ||
"sinon": "^4.3.0", | ||
"sinon-chai": "^2.14.0", | ||
"source-map-support": "^0.5.3", | ||
"ts-node": "^4.1.0", | ||
"umd-compat-loader": "^2.1.1", | ||
"vsce": "^1.36.2" | ||
}, | ||
"author": "Nadav Abraami ([email protected])", | ||
"publisher": "Nadav Abraami (nadav@wix.com)", | ||
"publisher": "wix", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:wixplosives/stylable-intelligence.git" | ||
"url": "[email protected]:wix/stylable-intelligence.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/wixplosives/stylable-intelligence/issues" | ||
"url": "https://github.com/wix/stylable-intelligence/issues" | ||
}, | ||
"engines": { | ||
"vscode": "^1.18.0" | ||
}, | ||
"categories": [ | ||
"Languages", | ||
"Snippets", | ||
"Other" | ||
], | ||
"contributes": { | ||
"languages": [ | ||
{ | ||
"id": "stylable", | ||
"aliases": [ | ||
"Stylable" | ||
], | ||
"extensions": [ | ||
".st.css" | ||
], | ||
"configuration": "./language-configuration.json" | ||
} | ||
], | ||
"grammars": [ | ||
{ | ||
"language": "stylable", | ||
"scopeName": "source.stylable", | ||
"path": "./src/client/stylable.tmLanguage.json" | ||
} | ||
] | ||
}, | ||
"homepage": "https://github.com/wixplosives/stylable-intelligence#readme", | ||
"activationEvents": [ | ||
"onLanguage:stylable" | ||
], | ||
"files": [ | ||
"dist/src" | ||
], | ||
"testGlob": "./dist/test/**/*.test.js?(x)", | ||
"homepage": "https://github.com/wix/stylable-intelligence#readme", | ||
"keywords": [ | ||
"typescript", | ||
"tdd" | ||
"stylable", | ||
"css" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.