create-next-rkk 2.0.1 → 2.0.2

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -72,7 +72,7 @@ function cleanupProjectDir(projectPath) {
72
72
  program
73
73
  .name('create-next-rkk')
74
74
  .description('Create a new Next.js app with rkk-next pre-configured')
75
- .version('2.0.1')
75
+ .version('2.0.2')
76
76
  .argument('[project-name]', 'name of your project')
77
77
  .action(async (projectName) => {
78
78
  console.log(chalk_1.default.bold.cyan('\nšŸš€ Create RKK Next.js App\n'));
@@ -149,7 +149,7 @@ program
149
149
  if (answers.installDeps) {
150
150
  activeStep = 'install-rkk';
151
151
  spinner.start('Installing rkk-next...');
152
- (0, child_process_1.execSync)('npm install rkk-next', {
152
+ (0, child_process_1.execSync)('npm install rkk-next --legacy-peer-deps', {
153
153
  stdio: 'inherit',
154
154
  cwd: projectPath
155
155
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-next-rkk",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "CLI tool to create Next.js apps with rkk-next pre-configured",
5
5
  "author": "Rohit Kumar Kundu",
6
6
  "license": "MIT",