This repository has been archived by the owner on May 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from toba/1.4.0-dev
Merge 1.4.0 changes
- Loading branch information
Showing
26 changed files
with
5,310 additions
and
1,122 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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
*.vsix | ||
node_modules | ||
.vscode-test | ||
out | ||
/dist | ||
/test/**/*.d.ts | ||
/test/**/*.js | ||
/src/**/*.js |
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,19 +1,18 @@ | ||
sudo: false | ||
|
||
os: | ||
- osx | ||
- linux | ||
language: node_js | ||
|
||
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 | ||
node_js: | ||
- '10' | ||
|
||
install: | ||
- npm install | ||
- npm run compile | ||
branches: | ||
only: | ||
- master | ||
|
||
script: | ||
- npm test --silent | ||
- yarn global add codecov | ||
- yarn test | ||
- codecov | ||
|
||
sudo: false | ||
|
||
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
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,10 +1,13 @@ | ||
src/**/* | ||
images/**/* | ||
node_modules | ||
src/**/* | ||
test/**/* | ||
.gitignore | ||
.travis.yml | ||
.vscode/**/* | ||
.vscode-test/**/* | ||
jest.config.js | ||
prettier.config.js | ||
tsconfig.json | ||
.gitignore | ||
.travis.yml | ||
node_modules | ||
test/**/* | ||
tslint.json | ||
yarn.lock |
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
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,4 @@ | ||
const config = require('@toba/test/jest'); | ||
// Jest shouldn't try to run /test/ folder tests | ||
config.testRegex = __dirname + '/src/.*\\.test\\.tsx?$'; | ||
module.exports = config; |
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,65 +1,73 @@ | ||
{ | ||
"name": "vsfire", | ||
"displayName": "Firebase", | ||
"description": "Firestore Security Rules syntax highlighting", | ||
"version": "1.3.2", | ||
"publisher": "toba", | ||
"keywords": ["firebase", "firestore", "rules"], | ||
"icon": "logo.png", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/toba/vsfire.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/toba/vsfire/issues" | ||
}, | ||
"engines": { | ||
"vscode": "^1.11.0" | ||
}, | ||
"categories": ["Languages"], | ||
"scripts": { | ||
"compile": "tsc -p ./", | ||
"pkgvars": "node ./node_modules/vscode/bin/install", | ||
"postinstall": "node ./node_modules/vscode/bin/install", | ||
"test": "node ./node_modules/vscode/bin/test" | ||
}, | ||
"activationEvents": ["onLanguage:firerules"], | ||
"main": "./out/src/extension", | ||
"contributes": { | ||
"languages": [ | ||
{ | ||
"id": "firerules", | ||
"extensions": [".rules", ".rule"], | ||
"aliases": ["Firebase Rules"], | ||
"configuration": "./language-configuration.json" | ||
} | ||
], | ||
"grammars": [ | ||
{ | ||
"language": "firerules", | ||
"scopeName": "source.firerules", | ||
"path": "./syntaxes/firerules.json" | ||
} | ||
], | ||
"jsonValidation": [ | ||
{ | ||
"fileMatch": "*.indexes.json", | ||
"url": "./syntaxes/index.schema.json" | ||
} | ||
] | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^4.0.4", | ||
"@types/mocha": "^2.2.43", | ||
"@types/node": "^8.5.0", | ||
"chai": "^4.1.2", | ||
"mocha": "^5.0.0", | ||
"ts-node": "^4.1.0", | ||
"tslint": "^5.9.0", | ||
"tslint-consistent-codestyle": "^1.11.0", | ||
"typescript": "^2.7.0" | ||
}, | ||
"dependencies": { | ||
"vscode": "^1.1.6" | ||
} | ||
"name": "vsfire", | ||
"displayName": "Firebase", | ||
"description": "Firestore Security Rules syntax highlighting", | ||
"version": "1.4.0", | ||
"publisher": "Toba", | ||
"keywords": [ | ||
"firebase", | ||
"firestore", | ||
"rules" | ||
], | ||
"icon": "logo.png", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/toba/vsfire.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/toba/vsfire/issues" | ||
}, | ||
"engines": { | ||
"vscode": "^1.11.0" | ||
}, | ||
"categories": [ | ||
"Programming Languages" | ||
], | ||
"scripts": { | ||
"compile": "tsc -p ./", | ||
"pkgvars": "node ./node_modules/vscode/bin/install", | ||
"postinstall": "node ./node_modules/vscode/bin/install", | ||
"test": "jest --coverage" | ||
}, | ||
"activationEvents": [ | ||
"onLanguage:firerules" | ||
], | ||
"main": "./dist/extension", | ||
"contributes": { | ||
"languages": [ | ||
{ | ||
"id": "firerules", | ||
"extensions": [ | ||
".rules", | ||
".rule" | ||
], | ||
"aliases": [ | ||
"Firebase Rules" | ||
], | ||
"configuration": "./language-configuration.json" | ||
} | ||
], | ||
"grammars": [ | ||
{ | ||
"language": "firerules", | ||
"scopeName": "source.firerules", | ||
"path": "./syntaxes/firerules.json" | ||
} | ||
], | ||
"jsonValidation": [ | ||
{ | ||
"fileMatch": "*.indexes.json", | ||
"url": "./syntaxes/index.schema.json" | ||
} | ||
] | ||
}, | ||
"devDependencies": { | ||
"@toba/develop": "^4.4.2", | ||
"@toba/test": "^3.4.1", | ||
"@types/node": "^10.0.0", | ||
"ts-node": "^8.0.0" | ||
}, | ||
"dependencies": { | ||
"vscode": "^1.1.28" | ||
} | ||
} |
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 @@ | ||
module.exports = require("@toba/develop/prettier"); |
Oops, something went wrong.