@storm-software/tsup 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ import { Options } from 'tsup';
2
+ export { Options } from 'tsup';
3
+
4
+ /**
5
+ * Execute tsup with all the configurations we pass
6
+ *
7
+ * @param context - The build context
8
+ * @returns The build context
9
+ */
10
+ declare function build(options: Options): Promise<void>;
11
+
12
+ export { build };
@@ -0,0 +1,12 @@
1
+ import { Options } from 'tsup';
2
+ export { Options } from 'tsup';
3
+
4
+ /**
5
+ * Execute tsup with all the configurations we pass
6
+ *
7
+ * @param context - The build context
8
+ * @returns The build context
9
+ */
10
+ declare function build(options: Options): Promise<void>;
11
+
12
+ export { build };