Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
fix(store): failed to load page
Browse files Browse the repository at this point in the history
  • Loading branch information
TheReincarnator committed Dec 7, 2017
1 parent aed24f1 commit e342099
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@
"main": "dist/electron/index.js",
"scripts": {
"build": "tslint --project . -c tslint.json 'src/**/*.ts' && tsc --project .",
"start":
"npm run build && concurrently \"electron dist/electron\" \"tsc --project . --watch\"",
"start": "npm run build && concurrently \"electron dist/electron\" \"tsc --project . --watch\"",
"build-lsg": "tsc --project src/lsg --outDir dist/lsg/patterns --sourceMap",
"start-lsg":
"npm run build-lsg && concurrently \"npm run build-lsg -- -w\" \"patternplate start\""
"start-lsg": "npm run build-lsg && concurrently \"npm run build-lsg -- -w\" \"patternplate start\""
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/store/pattern/parser/typescript_parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class TypeScriptParser extends PatternParser {
}

protected getPropsTypeName(): string {
return `${this.typeName} Props`;
return `${this.typeName}Props`;
}

public parse(pattern: Pattern): Property[] | undefined {
Expand Down

0 comments on commit e342099

Please sign in to comment.