@baseplate-dev/project-builder-common 0.6.4 → 0.6.5

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 +5 -0
  2. package/package.json +15 -14
package/index.js CHANGED
@@ -1,6 +1,11 @@
1
1
  import path from 'node:path';
2
2
  import { fileURLToPath } from 'node:url';
3
3
 
4
+ /**
5
+ * Get the default plugins
6
+ *
7
+ * @param {import('@baseplate-dev/sync').Logger} logger - Logger instance for logging.
8
+ */
4
9
  export async function getDefaultPlugins(logger) {
5
10
  // dynamically import to avoid loading the server package unnecessarily
6
11
  const { discoverPlugins } =
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baseplate-dev/project-builder-common",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "Holds common packages for plugins and generators",
5
5
  "keywords": [
6
6
  "baseplate",
@@ -29,23 +29,24 @@
29
29
  "dependencies": {
30
30
  "eslint": "9.39.2",
31
31
  "prettier": "3.8.1",
32
- "@baseplate-dev/plugin-auth": "0.6.4",
33
- "@baseplate-dev/plugin-email": "0.6.4",
34
- "@baseplate-dev/plugin-observability": "0.6.4",
35
- "@baseplate-dev/plugin-payments": "0.6.4",
36
- "@baseplate-dev/plugin-queue": "0.6.4",
37
- "@baseplate-dev/plugin-rate-limit": "0.6.4",
38
- "@baseplate-dev/plugin-storage": "0.6.4",
39
- "@baseplate-dev/project-builder-lib": "0.6.4",
40
- "@baseplate-dev/project-builder-server": "0.6.4",
41
- "@baseplate-dev/sync": "0.6.4"
32
+ "@baseplate-dev/plugin-ai": "0.6.5",
33
+ "@baseplate-dev/plugin-auth": "0.6.5",
34
+ "@baseplate-dev/plugin-email": "0.6.5",
35
+ "@baseplate-dev/plugin-observability": "0.6.5",
36
+ "@baseplate-dev/plugin-payments": "0.6.5",
37
+ "@baseplate-dev/plugin-queue": "0.6.5",
38
+ "@baseplate-dev/plugin-rate-limit": "0.6.5",
39
+ "@baseplate-dev/plugin-storage": "0.6.5",
40
+ "@baseplate-dev/project-builder-lib": "0.6.5",
41
+ "@baseplate-dev/project-builder-server": "0.6.5",
42
+ "@baseplate-dev/sync": "0.6.5"
42
43
  },
43
44
  "devDependencies": {
44
- "oxlint": "1.55.0",
45
- "@baseplate-dev/tools": "0.6.4"
45
+ "oxlint": "1.56.0",
46
+ "@baseplate-dev/tools": "0.6.5"
46
47
  },
47
48
  "engines": {
48
- "node": "^22.0.0"
49
+ "node": "^24.0.0"
49
50
  },
50
51
  "volta": {
51
52
  "extends": "../../package.json"