Skip to content
This repository was archived by the owner on Apr 9, 2026. It is now read-only.

Commit c1ace36

Browse files
committed
Release v3.0.1
2 parents 868adc3 + 4c0f3c0 commit c1ace36

4 files changed

Lines changed: 248 additions & 241 deletions

File tree

info.plist

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,10 +182,6 @@
182182
<key>readme</key>
183183
<string>Simple workflow that allows you to browse and open Atom projects.
184184
185-
Requirements:
186-
- NodeJS (node)
187-
- Atom Project Manager package (https://atom.io/packages/project-manager)
188-
189185
Usage:
190186
Simply type atom and press space to list all projects. Optionally type a search string to filter results.</string>
191187
<key>uidata</key>
@@ -238,6 +234,10 @@ Simply type atom and press space to list all projects. Optionally type a search
238234
<key>terminalApp</key>
239235
<string>Terminal</string>
240236
</dict>
237+
<key>variablesdontexport</key>
238+
<array>
239+
<string>terminalApp</string>
240+
</array>
241241
<key>version</key>
242242
<string>3.0.0</string>
243243
<key>webaddress</key>

package.json

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "alfred-atom",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"repository": "Cloudstek/alfred-atom",
55
"author": "Maarten de Boer <maarten@cloudstek.nl> (https://cloudstek.nl)",
66
"license": "BSD-2-Clause",
@@ -35,26 +35,22 @@
3535
"devDependencies": {
3636
"@types/color": "^3.0.0",
3737
"@types/cson-parser": "^4.0.0",
38-
"@types/fs-extra": "^7.0.0",
38+
"@types/fs-extra": "^8.0.0",
3939
"@types/glob": "^7.1.1",
4040
"@types/node": "^12.0.2",
4141
"@types/sharp": "^0.22.2",
4242
"del-cli": "^2.0.0",
43-
"npm-run-all": "^4.1.5",
4443
"tslint": "^5.18.0",
4544
"typescript": "^3.4.5"
4645
},
4746
"engines": {
4847
"node": ">=8"
4948
},
5049
"scripts": {
51-
"clean": "npm-run-all -p clean:*",
52-
"clean:dist": "del-cli dist",
53-
"build": "npm-run-all -s clean:* build:*",
54-
"build:dist": "tsc",
55-
"lint": "npm-run-all -l -p lint:*",
56-
"lint:src": "tslint src/**/*.ts",
57-
"lint:test": "tslint test/**/*.ts",
50+
"clean": "del-cli dist*",
51+
"build": "del-cli dist && tsc",
52+
"watch": "del-cli dist && tsc --watch",
53+
"lint": "tslint src/**/*.ts*",
5854
"postinstall": "hugo-link",
5955
"preuninstall": "hugo-unlink"
6056
}

tsconfig.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,5 @@
1313
},
1414
"include": [
1515
"src/**/*"
16-
],
17-
"exclude": [
18-
"test/**/*"
1916
]
2017
}

0 commit comments

Comments
 (0)