Socket
Socket
Sign inDemoInstall

remake

Package Overview
Dependencies
119
Maintainers
2
Versions
42
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.11.2 to 1.11.3

utils/messages.js

3

package.json
{
"name": "remake",
"version": "1.11.2",
"version": "1.11.3",
"description": "Generate a full-stack Remake web app",

@@ -30,3 +30,2 @@ "license": "MIT",

"axios": "^0.19.0",
"boxen": "^4.1.0",
"chalk": "^2.4.2",

@@ -33,0 +32,0 @@ "commander": "^3.0.0",

@@ -8,3 +8,2 @@ const fs = require('fs');

const rimraf = promisify(require('rimraf'));
const boxen = require('boxen');
const ora = require('ora');

@@ -24,5 +23,4 @@ const process = require('process');

const { questions } = require('./inquirer-questions');
const { getSuccessMessage } = require('./get-success-message');
const { showSuccessfulCreationMessage } = require('./messages');
const boxenOptions = {padding: 3, margin: 1, borderStyle: 'double', borderColor: 'green'};
let spinner = null;

@@ -75,3 +73,3 @@

if (dotRemakeReady) {
log(boxen(getSuccessMessage(projectDir), boxenOptions));
showSuccessfulCreationMessage(projectDir);
}

@@ -87,8 +85,4 @@ }

spinner = ora('Cleaning project.').start();
shell.rm('-rf', '.cache/');
shell.rm('-rf', '_remake/dist');
shell.exec('npm run clean', { silent:true });
spinner.succeed();
// TODO - replace above statement with bellow statement once the framework is
// updated with the clean script
// shell.exec('npm run clean');
}

@@ -95,0 +89,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc