forked from Bynder/bynder-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
96 lines (90 loc) · 2.15 KB
/
gulpfile.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
const gulp = require("gulp");
const eslint = require("gulp-eslint");
const babel = require("gulp-babel");
const jsdoc = require("gulp-jsdoc3");
const connect = require("gulp-connect");
const webpack = require("webpack");
const path = require("path");
gulp.task("default", () => {
gulp.start("lint", "babel", "doc");
});
gulp.task("lint", () => {
return gulp
.src(["src/*.js", "!node_modules/**"])
.pipe(eslint())
.pipe(eslint.format());
});
gulp.task("babel", () => {
gulp
.src("src/*.js")
.pipe(
babel({
presets: ["env"],
plugins: ["transform-object-rest-spread",
["transform-runtime", {
"polyfill": false,
"regenerator": true
}
]
]
})
)
.pipe(gulp.dest("dist"));
});
gulp.task("build", () => {
webpack({
entry: ["babel-polyfill", path.join(__dirname, "./src/bynder-js-sdk")],
output: {
path: path.join(__dirname, "/dist/"),
filename: "bundle.js",
library: "Bynder"
},
node: {
net: 'empty'
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: "babel-loader",
query: {
presets: ["env"],
plugins: ["transform-object-rest-spread"],
}
},
{
test: /\.js$/,
include: /node_modules\/proper-url-join/,
loader: "babel-loader",
query: {
presets: [["env", { "modules": 'commonjs' }]],
plugins: ["add-module-exports"]
}
}
]
},
resolve: {
extensions: ["*", ".js"],
}
}).run((err, stat) => {
if (err) {
console.log("Error building application - ", err);
return;
}
const statJson = stat.toJson();
if (statJson.errors.length > 0) {
console.log("Error building application - ", statJson.errors);
return;
}
console.log("Application built successfully !");
});
});
gulp.task("doc", cb => {
gulp.src(["README.md", "src/*.js"], { read: false }).pipe(jsdoc(cb));
});
gulp.task("webserver", () => {
connect.server({
port: 8080
});
});