Skip to content

Commit

Permalink
Release v3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeboer committed Dec 31, 2019
2 parents 741588f + 4092a1c commit 52e735d
Show file tree
Hide file tree
Showing 3 changed files with 253 additions and 373 deletions.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alfred-atom",
"version": "3.0.2",
"version": "3.0.3",
"repository": "Cloudstek/alfred-atom",
"author": "Maarten de Boer <maarten@cloudstek.nl> (https://cloudstek.nl)",
"license": "BSD-2-Clause",
Expand All @@ -10,7 +10,8 @@
"files": [
"/dist",
"/info.plist",
"/icon.png"
"/icon.png",
"yarn.lock"
],
"keywords": [
"alfred",
Expand All @@ -23,7 +24,7 @@
"dependencies": {
"@primer/octicons": "^9.3.1",
"alfred-hugo": "^2.0.3",
"change-case": "^3.1.0",
"change-case": "^4.1.1",
"color": "^3.1.2",
"cson-parser": "^4.0.3",
"fs-extra": "^8.1.0",
Expand All @@ -36,7 +37,7 @@
"@types/color": "^3.0.0",
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/node": "^12.12.14",
"@types/node": "^13.1.2",
"@types/sharp": "^0.23.0",
"del-cli": "^3.0.0",
"tslint": "^5.20.1",
Expand Down
4 changes: 2 additions & 2 deletions src/project.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import cson from "cson-parser";
import changeCase from "change-case";
import { capitalCase } from "change-case";
import path from "path";
import glob from "glob";
import { Item } from "alfred-hugo";
Expand Down Expand Up @@ -107,7 +107,7 @@ export class Projects {
dir = dir.substring(0, dir.indexOf("/.git"));

const project: Project = {
title: prettifyTitle ? changeCase.title(dir) : dir,
title: prettifyTitle ? capitalCase(dir) : dir,
group: "Git repository",
paths: [
path.resolve(projectHome, dir),
Expand Down
Loading

0 comments on commit 52e735d

Please sign in to comment.