@platformatic/foundation 3.28.0-alpha.1 → 3.28.0

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/lib/schema.js +9 -0
  2. package/package.json +1 -1
package/lib/schema.js CHANGED
@@ -790,6 +790,10 @@ export const application = {
790
790
  sourceMaps: {
791
791
  type: 'boolean'
792
792
  },
793
+ nodeModulesSourceMaps: {
794
+ type: 'array',
795
+ items: { type: 'string' }
796
+ },
793
797
  packageManager: {
794
798
  type: 'string',
795
799
  enum: ['npm', 'pnpm', 'yarn']
@@ -1279,6 +1283,11 @@ export const runtimeProperties = {
1279
1283
  type: 'boolean',
1280
1284
  default: false
1281
1285
  },
1286
+ nodeModulesSourceMaps: {
1287
+ type: 'array',
1288
+ items: { type: 'string' },
1289
+ default: []
1290
+ },
1282
1291
  scheduler: {
1283
1292
  type: 'array',
1284
1293
  items: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/foundation",
3
- "version": "3.28.0-alpha.1",
3
+ "version": "3.28.0",
4
4
  "description": "Platformatic Foundation",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",