We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e5bc37 commit 1706f42Copy full SHA for 1706f42
src/build.js
@@ -21,11 +21,10 @@ const shared = {
21
},
22
};
23
24
-const buildOneSet = (target) => {
+const buildOneSet = () => {
25
build({
26
...shared,
27
outfile: `../dist/index.mjs`,
28
- target,
29
});
30
31
// Always build UserFunction.js
@@ -40,7 +39,6 @@ const buildOneSet = (target) => {
40
39
js: '})();',
41
42
outfile: `../dist/UserFunction.js`,
43
44
45
46
// Copy rapid-client
@@ -53,4 +51,4 @@ const buildOneSet = (target) => {
53
51
);
54
52
55
56
-buildOneSet('node16.20.2');
+buildOneSet();
0 commit comments