@kithinji/pod 1.0.29 → 1.0.30
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/dist/main.js +2 -2
- package/dist/main.js.map +1 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -4948,7 +4948,7 @@ const isWatch = process.argv.includes('--watch');
|
|
|
4948
4948
|
const aliasPlugin = {
|
|
4949
4949
|
name: 'alias',
|
|
4950
4950
|
setup(build) {
|
|
4951
|
-
build.onResolve({ filter:
|
|
4951
|
+
build.onResolve({ filter: /^@/ }, args => {
|
|
4952
4952
|
return {
|
|
4953
4953
|
path: path.resolve(__dirname, 'src', args.path.slice(2))
|
|
4954
4954
|
};
|
|
@@ -6433,7 +6433,7 @@ Deployment Failed: ${err.message}`));
|
|
|
6433
6433
|
// src/main.ts
|
|
6434
6434
|
import chalk2 from "chalk";
|
|
6435
6435
|
var program = new Command();
|
|
6436
|
-
program.name("pod").description("Pod cli tool").version("1.0.
|
|
6436
|
+
program.name("pod").description("Pod cli tool").version("1.0.30");
|
|
6437
6437
|
program.command("new <name> [type]").description("Start a new Orca Project").action(async (name, type) => {
|
|
6438
6438
|
const orca = async () => {
|
|
6439
6439
|
await addNew(name);
|