titanpl-sdk 1.0.7 → 1.0.9
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "titanpl-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "Development SDK for Titan Planet. Provides TypeScript type definitions for the global 't' runtime object and a 'lite' test-harness runtime for building and verifying extensions.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
package/templates/app/app.js
CHANGED
|
@@ -155,7 +155,7 @@ export async function bundleFile(options) {
|
|
|
155
155
|
* RULE: After printing error box, throws Error("__TITAN_BUNDLE_FAILED__")
|
|
156
156
|
* @returns {Promise<void>}
|
|
157
157
|
*/
|
|
158
|
-
export
|
|
158
|
+
export async function bundle() {
|
|
159
159
|
const root = process.cwd();
|
|
160
160
|
const actionsDir = path.join(root, 'app', 'actions');
|
|
161
161
|
const bundleDir = path.join(root, 'server', 'actions');
|