create-catalyst-app-internal 0.0.1-beta.35 → 0.0.1-beta.36

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.
@@ -58,6 +58,10 @@ async function main() {
58
58
  const routeTransformerPath = path.join(__dirname, "./", 'transformers/createRoute.js')
59
59
  const reducerTransformerPath = path.join(__dirname, "./", 'transformers/createReducer.js');
60
60
 
61
+ console.log("containersDir", containersDir)
62
+ console.log("routeTransformerPath", routeTransformerPath)
63
+ console.log("reducerTransformerPath", reducerTransformerPath)
64
+
61
65
  const funcArgs = { containersDir, componentName, routePath, reducerName, templateType, reducerTransformerPath, routeTransformerPath }
62
66
 
63
67
  // create directory
@@ -47,6 +47,7 @@ function createDirectory({ componentName, containersDir }) {
47
47
  throw new Error("directory with similar name already exist");
48
48
  }
49
49
 
50
+ console.log("routeIndexPath", containersDir)
50
51
  fs.mkdirSync(`${containersDir}/${componentName}`)
51
52
  console.log(`\n${pc.cyan(componentName)} directory created at ${pc.gray(containersDir)}`);
52
53
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-catalyst-app-internal",
3
3
  "bin": "scripts/cli.cjs",
4
- "version": "0.0.1-beta.35",
4
+ "version": "0.0.1-beta.36",
5
5
  "description": "cli package to scaffold Catalyst application",
6
6
  "dependencies": {
7
7
  "commander": "^8.2.0",