@platformatic/generators 3.5.0 → 3.6.0
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/lib/base-generator.js +3 -1
- package/package.json +2 -2
package/lib/base-generator.js
CHANGED
|
@@ -344,7 +344,9 @@ class BaseGenerator extends FileGenerator {
|
|
|
344
344
|
const template = {
|
|
345
345
|
name: `${this.config.applicationName}`,
|
|
346
346
|
scripts: {
|
|
347
|
-
|
|
347
|
+
dev: 'wattpm dev',
|
|
348
|
+
start: 'wattpm start',
|
|
349
|
+
build: 'wattpm build',
|
|
348
350
|
test: 'node --test'
|
|
349
351
|
},
|
|
350
352
|
devDependencies: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/generators",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.0",
|
|
4
4
|
"description": "Main classes and utils for generators.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"fastify": "^5.0.0",
|
|
24
24
|
"pino": "^9.9.0",
|
|
25
25
|
"undici": "^7.0.0",
|
|
26
|
-
"@platformatic/foundation": "3.
|
|
26
|
+
"@platformatic/foundation": "3.6.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/inquirer": "^9.0.7",
|