@baseplate-dev/project-builder-common 0.1.1 → 0.1.2

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/README.md +27 -0
  2. package/package.json +9 -9
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # @baseplate-dev/project-builder-common
2
+
3
+ This package provides a single, convenient import point for all default Baseplate generators and plugins.
4
+
5
+ ## Purpose
6
+
7
+ The project-builder-common package serves as a centralized export hub that bundles:
8
+
9
+ - Core generators (@baseplate-dev/core-generators)
10
+ - Fastify generators (@baseplate-dev/fastify-generators)
11
+ - React generators (@baseplate-dev/react-generators)
12
+ - Authentication plugin (@baseplate-dev/plugin-auth)
13
+ - Storage plugin (@baseplate-dev/plugin-storage)
14
+
15
+ ## Usage
16
+
17
+ Instead of importing each generator and plugin individually, you can import everything from this single package:
18
+
19
+ ```javascript
20
+ import { generators, plugins } from '@baseplate-dev/project-builder-common';
21
+ ```
22
+
23
+ This simplifies dependency management and ensures all core Baseplate functionality is available with a single import.
24
+
25
+ ## Part of Baseplate Monorepo
26
+
27
+ This package is part of the Baseplate monorepo and acts as the main entry point for accessing Baseplate's default generators and plugins.
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@baseplate-dev/project-builder-common",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Holds common packages for plugins and generators",
5
- "homepage": "https://www.halfdomelabs.com/",
5
+ "homepage": "https://www.baseplate.dev",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/halfdomelabs/baseplate",
9
9
  "directory": "packages/project-builder-common"
10
10
  },
11
- "license": "SEE LICENSE IN LICENSE",
11
+ "license": "MPL-2.0",
12
12
  "author": "Half Dome Labs LLC",
13
13
  "type": "module",
14
14
  "exports": {
@@ -22,14 +22,14 @@
22
22
  "dependencies": {
23
23
  "eslint": "9.26.0",
24
24
  "prettier": "3.5.3",
25
- "@baseplate-dev/plugin-auth": "0.1.1",
26
- "@baseplate-dev/plugin-storage": "0.1.1",
27
- "@baseplate-dev/project-builder-lib": "0.1.1",
28
- "@baseplate-dev/project-builder-server": "0.1.1",
29
- "@baseplate-dev/sync": "0.1.1"
25
+ "@baseplate-dev/plugin-auth": "0.1.2",
26
+ "@baseplate-dev/plugin-storage": "0.1.2",
27
+ "@baseplate-dev/project-builder-lib": "0.1.2",
28
+ "@baseplate-dev/project-builder-server": "0.1.2",
29
+ "@baseplate-dev/sync": "0.1.2"
30
30
  },
31
31
  "devDependencies": {
32
- "@baseplate-dev/tools": "0.1.1"
32
+ "@baseplate-dev/tools": "0.1.2"
33
33
  },
34
34
  "engines": {
35
35
  "node": "^22.0.0"