create-platformatic 0.47.3 → 0.47.6

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-platformatic",
3
- "version": "0.47.3",
3
+ "version": "0.47.6",
4
4
  "description": "Create platformatic-db interactive tool",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,7 +34,7 @@
34
34
  "semver": "^7.5.1",
35
35
  "undici": "^5.22.1",
36
36
  "which": "^3.0.1",
37
- "@platformatic/config": "0.47.3"
37
+ "@platformatic/config": "0.47.6"
38
38
  },
39
39
  "devDependencies": {
40
40
  "ajv": "^8.12.0",
@@ -47,8 +47,8 @@
47
47
  "tap": "^16.3.6",
48
48
  "typescript": "~5.2.0",
49
49
  "yaml": "^2.3.1",
50
- "@platformatic/db": "0.47.3",
51
- "@platformatic/service": "0.47.3"
50
+ "@platformatic/db": "0.47.6",
51
+ "@platformatic/service": "0.47.6"
52
52
  },
53
53
  "scripts": {
54
54
  "test": "standard | snazzy && cross-env NODE_OPTIONS=\"--loader=esmock --no-warnings\" c8 tap --no-coverage test/*test.mjs test/*/*test.mjs",
@@ -34,7 +34,7 @@ async function createRuntime (logger, currentDir = process.cwd(), version, servi
34
34
  logger.info(`Configuration file ${accessibleConfigFilename} found, skipping creation of configuration file.`)
35
35
  }
36
36
  if (servicesDir) {
37
- const servicesDirFullPath = join(currentDir, servicesDir)
37
+ const servicesDirFullPath = isAbsolute(servicesDir) ? servicesDir : join(currentDir, servicesDir)
38
38
 
39
39
  try {
40
40
  await stat(servicesDirFullPath)