create-backlist 5.0.1 → 5.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-backlist",
3
- "version": "5.0.1",
3
+ "version": "5.0.2",
4
4
  "description": "An advanced, multi-language backend generator based on frontend analysis.",
5
5
  "type": "commonjs",
6
6
  "bin": {
@@ -1,6 +1,7 @@
1
1
  const chalk = require('chalk');
2
2
  const { execa } = require('execa');
3
3
  const fs = require('fs-extra');
4
+ const ejs = require('ejs');
4
5
  const path = require('path');
5
6
  const { analyzeFrontend } = require('../analyzer');
6
7
  const { renderAndWrite, getTemplatePath } = require('./template');