@baseplate-dev/project-builder-common 0.2.1 → 0.2.3

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.
Files changed (2) hide show
  1. package/index.js +2 -1
  2. package/package.json +7 -7
package/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ import path from 'node:path';
1
2
  import { fileURLToPath } from 'node:url';
2
3
 
3
4
  export async function getDefaultPlugins(logger) {
@@ -5,5 +6,5 @@ export async function getDefaultPlugins(logger) {
5
6
  const { discoverPlugins } = await import(
6
7
  '@baseplate-dev/project-builder-server/plugins'
7
8
  );
8
- return discoverPlugins(fileURLToPath(import.meta.url), logger);
9
+ return discoverPlugins(path.dirname(fileURLToPath(import.meta.url)), logger);
9
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baseplate-dev/project-builder-common",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Holds common packages for plugins and generators",
5
5
  "keywords": [
6
6
  "common",
@@ -29,14 +29,14 @@
29
29
  "dependencies": {
30
30
  "eslint": "9.26.0",
31
31
  "prettier": "3.5.3",
32
- "@baseplate-dev/plugin-auth": "1.0.1",
33
- "@baseplate-dev/plugin-storage": "1.0.1",
34
- "@baseplate-dev/project-builder-lib": "0.2.1",
35
- "@baseplate-dev/project-builder-server": "0.2.1",
36
- "@baseplate-dev/sync": "0.2.1"
32
+ "@baseplate-dev/plugin-auth": "1.0.3",
33
+ "@baseplate-dev/plugin-storage": "1.0.3",
34
+ "@baseplate-dev/project-builder-lib": "0.2.3",
35
+ "@baseplate-dev/project-builder-server": "0.2.3",
36
+ "@baseplate-dev/sync": "0.2.3"
37
37
  },
38
38
  "devDependencies": {
39
- "@baseplate-dev/tools": "0.2.1"
39
+ "@baseplate-dev/tools": "0.2.3"
40
40
  },
41
41
  "engines": {
42
42
  "node": "^22.0.0"