Skip to content

Commit

Permalink
Fix bug for resource page.
Browse files Browse the repository at this point in the history
  • Loading branch information
beth-panx committed Mar 31, 2017
1 parent 02a1f18 commit 412bb3a
Show file tree
Hide file tree
Showing 7 changed files with 494 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-office",
"version": "1.1.1",
"version": "1.1.3",
"description": "Yeoman generator for creating Microsoft Office projects using any text editor.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ module.exports = yo.extend({
}
else {
/** Copy the base template */
this.fs.copyTpl(this.templatePath(`${language}/base/**`), this.destinationPath(), this.project);
this.fs.copy(this.templatePath(`${language}/base/**`), this.destinationPath());

/** Copy the framework specific overrides */
this.fs.copyTpl(this.templatePath(`${language}/${this.project.framework}/**`), this.destinationPath(), this.project);
Expand Down
File renamed without changes.
File renamed without changes.
164 changes: 164 additions & 0 deletions src/app/templates/ts/angular/resource.html

Large diffs are not rendered by default.

164 changes: 164 additions & 0 deletions src/app/templates/ts/jquery/resource.html

Large diffs are not rendered by default.

164 changes: 164 additions & 0 deletions src/app/templates/ts/react/resource.html

Large diffs are not rendered by default.

0 comments on commit 412bb3a

Please sign in to comment.