-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstructions.ts
More file actions
42 lines (40 loc) · 1.11 KB
/
instructions.ts
File metadata and controls
42 lines (40 loc) · 1.11 KB
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
import { build, emptyDir } from "https://deno.land/x/dnt@0.37.0/mod.ts";
await emptyDir("./npm");
await build({
entryPoints: ["./src/sizebay.ts"],
outDir: "./npm",
typeCheck: false,
scriptModule: "umd",
shims: {
deno: true,
},
test: false,
package: {
name: "@sizebay/headless",
private: false,
version: Deno.args[0],
description:
"Sizebay Headless Package. The concept of Headless indicates that all the availability of the Virtual Fitting Room will be concentrated only in the methods and calls to Sizebay services, while the client/developer will be responsible for the layout.",
license: "MIT",
repository: {
type: "git",
url: "https://github.com/sizebay/headless.git",
},
bugs: {
url: "https://github.com/sizebay/headless/issues",
},
homepage: "https://github.com/sizebay/headless",
keywords: [
"sizebay",
"virtual fitting room",
"sizebay virtual fitting room",
"sizebay fitting room",
"sizebay head",
"sizebay headless",
"sizebay sdk",
"sdk",
"headless",
"head",
],
},
});