Skip to content

Commit

Permalink
Release v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeboer committed Jul 12, 2019
2 parents 868adc3 + 4c0f3c0 commit c1ace36
Show file tree
Hide file tree
Showing 4 changed files with 248 additions and 241 deletions.
8 changes: 4 additions & 4 deletions info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,6 @@
<key>readme</key>
<string>Simple workflow that allows you to browse and open Atom projects.
Requirements:
- NodeJS (node)
- Atom Project Manager package (https://atom.io/packages/project-manager)
Usage:
Simply type atom and press space to list all projects. Optionally type a search string to filter results.</string>
<key>uidata</key>
Expand Down Expand Up @@ -238,6 +234,10 @@ Simply type atom and press space to list all projects. Optionally type a search
<key>terminalApp</key>
<string>Terminal</string>
</dict>
<key>variablesdontexport</key>
<array>
<string>terminalApp</string>
</array>
<key>version</key>
<string>3.0.0</string>
<key>webaddress</key>
Expand Down
16 changes: 6 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alfred-atom",
"version": "3.0.0",
"version": "3.0.1",
"repository": "Cloudstek/alfred-atom",
"author": "Maarten de Boer <maarten@cloudstek.nl> (https://cloudstek.nl)",
"license": "BSD-2-Clause",
Expand Down Expand Up @@ -35,26 +35,22 @@
"devDependencies": {
"@types/color": "^3.0.0",
"@types/cson-parser": "^4.0.0",
"@types/fs-extra": "^7.0.0",
"@types/fs-extra": "^8.0.0",
"@types/glob": "^7.1.1",
"@types/node": "^12.0.2",
"@types/sharp": "^0.22.2",
"del-cli": "^2.0.0",
"npm-run-all": "^4.1.5",
"tslint": "^5.18.0",
"typescript": "^3.4.5"
},
"engines": {
"node": ">=8"
},
"scripts": {
"clean": "npm-run-all -p clean:*",
"clean:dist": "del-cli dist",
"build": "npm-run-all -s clean:* build:*",
"build:dist": "tsc",
"lint": "npm-run-all -l -p lint:*",
"lint:src": "tslint src/**/*.ts",
"lint:test": "tslint test/**/*.ts",
"clean": "del-cli dist*",
"build": "del-cli dist && tsc",
"watch": "del-cli dist && tsc --watch",
"lint": "tslint src/**/*.ts*",
"postinstall": "hugo-link",
"preuninstall": "hugo-unlink"
}
Expand Down
3 changes: 0 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,5 @@
},
"include": [
"src/**/*"
],
"exclude": [
"test/**/*"
]
}
Loading

0 comments on commit c1ace36

Please sign in to comment.