Skip to content

Commit

Permalink
Release v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeboer committed Jul 12, 2019
2 parents a558f6c + 2bf5362 commit 89fe78b
Show file tree
Hide file tree
Showing 3 changed files with 339 additions and 877 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alfred-hugo",
"version": "2.0.1",
"version": "2.0.2",
"description": "Alfred workflow bindings for NodeJS",
"author": "Maarten de Boer <maarten@cloudstek.nl> (https://cloudstek.nl)",
"contributors": [
Expand Down Expand Up @@ -29,7 +29,7 @@
],
"license": "BSD-2-Clause",
"devDependencies": {
"@types/fs-extra": "^7.0.0",
"@types/fs-extra": "^8.0.0",
"@types/glob": "^7.1.1",
"@types/mockdate": "^2.0.0",
"@types/nock": "^10.0.3",
Expand All @@ -50,11 +50,11 @@
"typescript": "^3.4.5"
},
"dependencies": {
"@types/node-notifier": "^5.4.0",
"@cloudstek/cache": "^1.0.1",
"@types/node-notifier": "^5.4.0",
"axios": "^0.19.0",
"bplist-parser": "^0.1.1",
"del": "^4.1.1",
"del": "^5.0.0",
"fs-extra": "^8.0.1",
"fuse.js": "^3.4.4",
"glob": "^7.1.4",
Expand All @@ -74,10 +74,10 @@
"clean:dist": "del-cli dist",
"clean:test": "del-cli build",
"clean:coverage": "del-cli coverage .nyc_output",
"build": "tsc",
"build:dist": "npm-run-all -s clean && tsc -p tsconfig.dist.json",
"test": "npm-run-all clean:test clean:coverage build test:run clean:test",
"test:run": "nyc ava",
"build": "npm-run-all -p clean:test clean:coverage && tsc",
"watch": "npm-run-all -p clean:test clean:coverage && tsc --watch",
"build:dist": "npm-run-all -s clean:dist && tsc -p tsconfig.dist.json",
"test": "npm-run-all -s clean:coverage && nyc ava",
"test:ci": "npm-run-all -p clean:* -s build && nyc -s ava && nyc report --reporter=text-lcov | coveralls",
"lint": "npm-run-all -l -p lint:*",
"lint:src": "tslint src/**/*.ts",
Expand Down
2 changes: 0 additions & 2 deletions tsconfig.dist.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": true,
"declarationMap": false,
"sourceMap": false,
"outDir": "dist"
},
Expand Down
Loading

0 comments on commit 89fe78b

Please sign in to comment.