Skip to content

Commit

Permalink
0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansglazunov authored May 1, 2018
2 parents 9cce6bf + edfc648 commit b7183dc
Show file tree
Hide file tree
Showing 7 changed files with 139 additions and 45 deletions.
25 changes: 25 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-u",
"tdd",
"--require",
"ts-node/register",
"source-map-support/register",
"--timeout",
"999999",
"${workspaceFolder}/src/tests/index.ts",
],
"internalConsoleOptions": "openOnSessionStart"
}
]
}
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"mocha.files.glob": "src/tests/*.ts",
"mocha.options": {
"compilers": {
"ts": "ts-node/register"
},
},
"mocha.requires": [
"source-map-support/register",
"ts-node/register",
],
}
2 changes: 1 addition & 1 deletion lib/asket.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

127 changes: 91 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ancient-asket",
"version": "0.1.5",
"version": "0.1.6",
"description": "Asketic abstract query language.",
"bugs": "https://github.com/AncientSouls/Asket/issues",
"repository": "AncientSouls/Asket",
Expand All @@ -14,19 +14,20 @@
"np": "./node_modules/np/cli.js --no-publish --no-yarn --yolo --any-branch"
},
"dependencies": {
"lodash": "^4.17.5",
"lodash": "^4.17.10",
"rsvp": "^4.8.2"
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.6",
"@types/node": "^9.6.8",
"chai": "^4.1.2",
"mocha": "^5.0.1",
"mocha": "^5.1.1",
"np": "^2.20.1",
"source-map-support": "^0.5.3",
"source-map-support": "^0.5.5",
"ts-node": "^6.0.2",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.7.0",
"tslint-config-airbnb": "^5.8.0",
"tslint-eslint-rules": "^5.1.0",
"typescript": "^2.7.2"
"typescript": "^2.8.3"
}
}
Loading

0 comments on commit b7183dc

Please sign in to comment.