Skip to content

Commit

Permalink
Update dependencies and scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ulises-jeremias committed Feb 4, 2024
1 parent c5cf1f5 commit a37949a
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
8 changes: 8 additions & 0 deletions packages/create-awesome-node-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# create-awesome-node-app

## 0.4.24

### Patch Changes

- Updated run fallbacks
- Updated dependencies
- @create-node-app/core@0.3.15

## 0.4.23

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-awesome-node-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-awesome-node-app",
"version": "0.4.23",
"version": "0.4.24",
"type": "module",
"description": "Command line tool to create Node apps with a lot of different templates and extensions.",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/create-node-app-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @create-node-app/core

## 0.3.15

### Patch Changes

- Updated run fallbacks

## 0.3.14

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-node-app-core/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ const run = async ({
fs.readFileSync(`${root}/package.json`, "utf8")
);

const lookForScripts = ["sls:offline", "dev", "start"];
const lookForScripts = ["compose:up", "sls:offline", "dev", "start"];

for (const script of lookForScripts) {
if (packageJson.scripts && packageJson.scripts[script]) {
Expand Down
2 changes: 1 addition & 1 deletion packages/create-node-app-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@create-node-app/core",
"version": "0.3.14",
"version": "0.3.15",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit a37949a

Please sign in to comment.