-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulp.config.js
53 lines (52 loc) · 1.49 KB
/
gulp.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
const config = {
injectSources: [
"./dist/web/scripts/**/*.js",
"./dist/web/styles/**/*.css"
],
staticFiles: [
"./src/app/**/*.html",
"./src/app/**/*.ejs",
"./src/app/web/assets/**/*"
],
htmlFiles: [
"./src/app/**/*.html", "./src/app/**/*.ejs"
],
watches: [
"./src/app/**/*.*",
"!./src/app/**/*.scss",
"!./src/app/web/**/*.*",
"!./src/app/scripts/**/*.*",
],
clientWatches: [
"./src/app/scripts/**/*.*",
"!./src/app/**/*.scss"
],
manifests: [
"./src/manifest/**/*.*",
'!**/manifest.json'
],
temp: [
"./temp"
],
// Supported Schemas
SCHEMAS: [{
version: "1.3",
schema: "https://developer.microsoft.com/en-us/json-schemas/teams/v1.3/MicrosoftTeams.schema.json"
},
{
version: "1.4",
schema: "https://developer.microsoft.com/en-us/json-schemas/teams/v1.4/MicrosoftTeams.schema.json"
},
{
version: "devPreview",
schema: "https://raw.githubusercontent.com/OfficeDev/microsoft-teams-app-schema/preview/DevPreview/MicrosoftTeams.schema.json"
},
{
version: "1.5",
schema: "https://developer.microsoft.com/en-us/json-schemas/teams/v1.5/MicrosoftTeams.schema.json"
}
],
// This is the name of the packaged manifest file
manifestFileName: "swoop-teams-tab.zip"
};
module.exports = config;