@brimble/models 2.7.5 → 2.7.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.
@@ -27,6 +27,10 @@ const projectSchema = new mongoose_1.Schema({
27
27
  type: String,
28
28
  required: false
29
29
  },
30
+ buildCacheEnabled: {
31
+ type: Boolean,
32
+ default: false,
33
+ },
30
34
  domains: [
31
35
  {
32
36
  ref: "Domain",
@@ -14,6 +14,7 @@ export interface IProject extends Document {
14
14
  healthCheckPath?: string;
15
15
  preStartCommand?: string;
16
16
  backupEnabled: boolean;
17
+ buildCacheEnabled?: boolean;
17
18
  domains: Array<IDomain>;
18
19
  environments: Array<IEnv>;
19
20
  uuid: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "2.7.5",
3
+ "version": "2.7.6",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/project/index.ts CHANGED
@@ -27,6 +27,10 @@ const projectSchema = new Schema(
27
27
  type: String,
28
28
  required: false
29
29
  },
30
+ buildCacheEnabled: {
31
+ type: Boolean,
32
+ default: false,
33
+ },
30
34
  domains: [
31
35
  {
32
36
  ref: "Domain",
@@ -15,6 +15,7 @@ export interface IProject extends Document {
15
15
  healthCheckPath?: string;
16
16
  preStartCommand?: string;
17
17
  backupEnabled: boolean;
18
+ buildCacheEnabled?: boolean;
18
19
  domains: Array<IDomain>;
19
20
  environments: Array<IEnv>;
20
21
  uuid: number;
@@ -1 +0,0 @@
1
- $ rm -rf dist && tsc -p .
package/brimble.json DELETED
@@ -1,3 +0,0 @@
1
- {
2
- "project": {}
3
- }