@sewing-kit/model
Advanced tools
Comparing version 0.0.4 to 0.0.5
import { Base, Options as BaseOptions } from './base'; | ||
export interface ServiceOptions extends BaseOptions { | ||
readonly entry: string; | ||
readonly entry?: string; | ||
} | ||
export declare class Service extends Base { | ||
readonly entry: string; | ||
readonly entry?: string; | ||
get id(): string; | ||
@@ -8,0 +8,0 @@ constructor({ entry, ...rest }: ServiceOptions); |
@@ -10,7 +10,7 @@ import { Base, Options as BaseOptions } from './base'; | ||
export interface WebAppOptions extends BaseOptions { | ||
readonly entry: string; | ||
readonly entry?: string; | ||
readonly serviceWorker?: ServiceWorkerOptions; | ||
} | ||
export declare class WebApp extends Base { | ||
readonly entry: string; | ||
readonly entry?: string; | ||
readonly serviceWorker?: ServiceWorker; | ||
@@ -17,0 +17,0 @@ get id(): string; |
@@ -15,3 +15,3 @@ import { Base, Options as BaseOptions } from './base'; | ||
get private(): boolean; | ||
get projects(): (import("./package").Package | import("./web-app").WebApp | import("./service").Service)[]; | ||
get projects(): (import("./web-app").WebApp | import("./package").Package | import("./service").Service)[]; | ||
constructor({ webApps, packages, services, ...rest }: WorkspaceOptions); | ||
@@ -18,0 +18,0 @@ } |
{ | ||
"name": "@sewing-kit/model", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"sideEffects": false, | ||
@@ -15,3 +15,3 @@ "publishConfig": { | ||
}, | ||
"gitHead": "745c54d5a33dca3e5848d621ab5eab98e5ba6682" | ||
"gitHead": "d0e3afd9fb24ebc7f726e7907c94d06b2277eac2" | ||
} |
import {Base, Options as BaseOptions} from './base'; | ||
export interface ServiceOptions extends BaseOptions { | ||
readonly entry: string; | ||
readonly entry?: string; | ||
} | ||
export class Service extends Base { | ||
readonly entry: string; | ||
readonly entry?: string; | ||
@@ -10,0 +10,0 @@ get id() { |
@@ -16,3 +16,3 @@ import {Base, Options as BaseOptions} from './base'; | ||
export interface WebAppOptions extends BaseOptions { | ||
readonly entry: string; | ||
readonly entry?: string; | ||
readonly serviceWorker?: ServiceWorkerOptions; | ||
@@ -22,3 +22,3 @@ } | ||
export class WebApp extends Base { | ||
readonly entry: string; | ||
readonly entry?: string; | ||
readonly serviceWorker?: ServiceWorker; | ||
@@ -25,0 +25,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
300425