Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewconnell committed Sep 4, 2015
2 parents fe63338 + 6fb51fe commit 1c1794d
Show file tree
Hide file tree
Showing 35 changed files with 1,984 additions and 54 deletions.
19 changes: 19 additions & 0 deletions README.md
Expand Up @@ -71,6 +71,25 @@ Technology to use for the project. The supported options include HTML (`html`) o
- Default: undefined / null
- Optional

### `--clients: [ 'Document' | 'Workbook' | 'Presentation' | 'Project' ]`

The Microsoft Office client application that can host the add-in.

> This applies only to task pane or content add-ins.
- Type: String[]
- Default: undefined / null
- Optional

### `--outlookForm: [ 'mail-read' | 'mail-compose' | 'appointment-read' | 'appointment-compose' ]`

The type of form within Outlook that can host the add-in.

> This applies only to mail add-ins.
- Type: String[]
- Default: undefined / null
- Optional

## Sub Generators

Expand Down
8 changes: 8 additions & 0 deletions docs/ex-content-html.md
Expand Up @@ -16,11 +16,15 @@ $ yo office --skip-install
- **Root folder of the project:** {blank}
- **Office project type:** Content Add-in
- **Technology to use:** Html, CSS & JavaScript
- **Supported Office Applications:** Word, Excel, PowerPoint, Project

```
.
├── .bowerrc
├── bower.json
├── gulpfile.js
├── jsconfig.json
├── tsd.json
├── app
│   ├── app.css
│   ├── app.js
Expand Down Expand Up @@ -75,15 +79,19 @@ $ yo office --skip-install
- **Root folder of the project:** src/public
- **Office project type:** Content Add-in
- **Technology to use:** Html, CSS & JavaScript
- **Supported Office Applications:** Word, Excel, PowerPoint, Project

### Results:

```
.
├── .bowerrc
├── bower.json
├── gulpfile.js
├── jsconfig.json
├── manifest.xml
├── package.json
├── tsd.json
└── src
├── public
│   ├── app
Expand Down
8 changes: 8 additions & 0 deletions docs/ex-content-ng.md
Expand Up @@ -16,13 +16,17 @@ $ yo office --skip-install
- **Root folder of the project:** {blank}
- **Office project type:** Content Add-in
- **Technology to use:** Angular
- **Supported Office Applications:** Word, Excel, PowerPoint, Project

```
.
├── .bowerrc
├── bower.json
├── gulpfile.js
├── index.html
├── jsconfig.json
├── manifest.xml
├── tsd.json
├── app
│   ├── app.module.js
│   ├── app.routes.js
Expand Down Expand Up @@ -77,15 +81,19 @@ $ yo office --skip-install
- **Root folder of the project:** src/public
- **Office project type:** Content Add-in
- **Technology to use:** Angular
- **Supported Office Applications:** Word, Excel, PowerPoint, Project

### Results:

```
.
├── .bowerrc
├── bower.json
├── gulpfile.js
├── jsconfig.json
├── manifest.xml
├── package.json
├── tsd.json
└── src
├── public
│   ├── index.html
Expand Down
8 changes: 8 additions & 0 deletions docs/ex-mail-html.md
Expand Up @@ -16,12 +16,16 @@ $ yo office --skip-install
- **Root folder of the project:** {blank}
- **Office project type:** Mail Add-in (read & compose forms)
- **Technology to use:** Html, CSS & JavaScript
- **Supported Outlook forms:** E-Mail message - read form, Appointment - read form

```
.
├── .bowerrc
├── bower.json
├── gulpfile.js
├── jsconfig.json
├── manifest.xml
├── tsd.json
├── appcompose
│   ├── app.css
│   ├── app.js
Expand Down Expand Up @@ -82,15 +86,19 @@ $ yo office --skip-install
- **Root folder of the project:** src/public
- **Office project type:** Mail Add-in (read & compose forms)
- **Technology to use:** Html, CSS & JavaScript
- **Supported Outlook forms:** E-Mail message - read form, Appointment - read form

### Results:

```
.
├── .bowerrc
├── bower.json
├── gulpfile.js
├── jsconfig.json
├── manifest.xml
├── package.json
├── tsd.json
└── src
├── public
│   ├── appcompose
Expand Down
9 changes: 8 additions & 1 deletion docs/ex-mail-ng.md
Expand Up @@ -16,12 +16,16 @@ $ yo office --skip-install
- **Root folder of the project:** {blank}
- **Office project type:** Mail Add-in (read & compose forms)
- **Technology to use:** Angular
- **Supported Outlook forms:** E-Mail message - read form, Appointment - read form

```
.
├── .bowerrc
├── bower.json
├── gulpfile.js
├── jsconfig.json
├── manifest.xml
├── tsd.json
├── appcompose
│   ├── app.module.js
│   ├── app.routes.js
Expand Down Expand Up @@ -86,16 +90,19 @@ $ yo office --skip-install
- **Root folder of the project:** src/public
- **Office project type:** Mail Add-in (read & compose forms)
- **Technology to use:** Angular

- **Supported Outlook forms:** E-Mail message - read form, Appointment - read form

### Results:

```
.
├── .bowerrc
├── bower.json
├── gulpfile.js
├── jsconfig.json
├── manifest.xml
├── package.json
├── tsd.json
└── src
├── public
│   ├── index.html
Expand Down
8 changes: 8 additions & 0 deletions docs/ex-taskpane-html.md
Expand Up @@ -16,11 +16,15 @@ $ yo office --skip-install
- **Root folder of the project:** {blank}
- **Office project type:** Task Pane Add-in
- **Technology to use:** Html, CSS & JavaScript
- **Supported Office Applications:** Word, Excel, PowerPoint, Project

```
.
├── .bowerrc
├── bower.json
├── gulpfile.js
├── jsconfig.json
├── tsd.json
├── app
│   ├── app.css
│   ├── app.js
Expand Down Expand Up @@ -75,15 +79,19 @@ $ yo office --skip-install
- **Root folder of the project:** src/public
- **Office project type:** Task Pane Add-in
- **Technology to use:** Html, CSS & JavaScript
- **Supported Office Applications:** Word, Excel, PowerPoint, Project

### Results:

```
.
├── .bowerrc
├── bower.json
├── gulpfile.js
├── jsconfig.json
├── manifest.xml
├── package.json
├── tsd.json
└── src
├── public
│   ├── app
Expand Down
9 changes: 8 additions & 1 deletion docs/ex-taskpane-ng.md
Expand Up @@ -16,13 +16,17 @@ $ yo office --skip-install
- **Root folder of the project:** {blank}
- **Office project type:** Task Pane Add-in
- **Technology to use:** Angular
- **Supported Office Applications:** Word, Excel, PowerPoint, Project

```
.
├── .bowerrc
├── bower.json
├── gulpfile.js
├── index.html
├── jsconfig.json
├── manifest.xml
├── tsd.json
├── app
│   ├── app.module.js
│   ├── app.routes.js
Expand Down Expand Up @@ -77,16 +81,19 @@ $ yo office --skip-install
- **Root folder of the project:** src/public
- **Office project type:** Task Pane Add-in
- **Technology to use:** Angular

- **Supported Office Applications:** Word, Excel, PowerPoint, Project

### Results:

```
.
├── .bowerrc
├── bower.json
├── gulpfile.js
├── jsconfig.json
├── manifest.xml
├── package.json
├── tsd.json
└── src
├── public
│   ├── index.html
Expand Down

0 comments on commit 1c1794d

Please sign in to comment.