Socket
Socket
Sign inDemoInstall

@awdware/gah-shared

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@awdware/gah-shared - npm Package Compare versions

Comparing version 0.0.33 to 0.0.34

4

assets/gah-host-schema.json

@@ -38,2 +38,6 @@ {

},
"baseHref": {
"description": "The baseHref that is put into the web.config for redirect rules (defaults to '/')",
"type": "string"
},
"isHost": {

@@ -40,0 +44,0 @@ "type": "boolean"

@@ -31,4 +31,18 @@ {

},
"facadePath": {
"description": "The path to the folder containing facade files. This is optional and the path is relative to the folder this config file is in.",
"assetsPath": {
"description": "The path(s) to the assets folder(s) that should get served by the host. This is optional and relative to this config's directory.",
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"stylesPath": {
"description": "The path to the file containing global styles. This is optional and relative to this config's directory.",
"type": "string"

@@ -35,0 +49,0 @@ },

5

lib/models/gah-event.d.ts

@@ -37,5 +37,8 @@ import { GahFileData } from './install-helper/gah-file-data';

} | {
type: 'ASSETS_BASE_STYLES_COPIED';
type: 'ASSETS_COPIED';
module?: GahModuleData;
} | {
type: 'STYLES_REFERENCED';
module?: GahModuleData;
} | {
type: 'DEPENDENCIES_MERGED';

@@ -42,0 +45,0 @@ module?: GahModuleData;

@@ -7,3 +7,4 @@ import { GahConfig } from '../gah-config';

readonly srcBasePath: string;
readonly facadePathRelativeToBasePath?: string;
readonly assetsGlobbingPath?: string | string[];
readonly stylesPathRelativeToBasePath?: string;
readonly publicApiPathRelativeToBasePath: string;

@@ -10,0 +11,0 @@ readonly baseNgModuleName?: string;

@@ -12,6 +12,10 @@ import { ModuleReference } from './module-reference';

/**
* The path to the folder containing facade files. This is optional and the path is relative to the folder this config file is in.
* The path(s) to the assets folder(s) that should get served by the host. This is optional and relative to this config's directory.
*/
facadePath?: string;
assetsPath?: string | string[];
/**
* The path to the file containing global styles. This is optional and relative to this config's directory.
*/
stylesPath?: string;
/**
* The path to the public-api.ts file. The path is relative to the folder this config file is in.

@@ -18,0 +22,0 @@ */

@@ -12,2 +12,3 @@ import { FileSystemType } from '../services/file-system.service';

exclude?: (val: string) => boolean;
optional?: boolean;
}

@@ -14,0 +15,0 @@ export declare class SelectionPromptConfig extends PromptConfig {

@@ -29,2 +29,3 @@ "use strict";

_this.itemType = 'any';
_this.optional = false;
return _this;

@@ -31,0 +32,0 @@ }

{
"name": "@awdware/gah-shared",
"version": "0.0.33",
"version": "0.0.34",
"description": "Provides types and interfaces for gah",

@@ -26,3 +26,3 @@ "main": "./lib/index.js",

"ts-node": "^8.9.1",
"typescript": "^3.9.4",
"typescript": "~3.9.6",
"typescript-json-schema": "^0.42.0"

@@ -29,0 +29,0 @@ },

@@ -37,5 +37,8 @@ import { GahFileData } from './install-helper/gah-file-data';

} | {
type: 'ASSETS_BASE_STYLES_COPIED';
type: 'ASSETS_COPIED';
module?: GahModuleData;
} | {
type: 'STYLES_REFERENCED';
module?: GahModuleData;
} | {
type: 'DEPENDENCIES_MERGED';

@@ -42,0 +45,0 @@ module?: GahModuleData;

@@ -7,3 +7,4 @@ import { GahConfig } from '../gah-config';

readonly srcBasePath: string;
readonly facadePathRelativeToBasePath?: string;
readonly assetsGlobbingPath?: string | string[];
readonly stylesPathRelativeToBasePath?: string;
readonly publicApiPathRelativeToBasePath: string;

@@ -10,0 +11,0 @@ readonly baseNgModuleName?: string;

@@ -12,6 +12,10 @@ import { ModuleReference } from './module-reference';

/**
* The path to the folder containing facade files. This is optional and the path is relative to the folder this config file is in.
* The path(s) to the assets folder(s) that should get served by the host. This is optional and relative to this config's directory.
*/
facadePath?: string;
assetsPath?: string | string[];
/**
* The path to the file containing global styles. This is optional and relative to this config's directory.
*/
stylesPath?: string;
/**
* The path to the public-api.ts file. The path is relative to the folder this config file is in.

@@ -18,0 +22,0 @@ */

@@ -12,2 +12,3 @@ import { FileSystemType } from '../services/file-system.service';

exclude?: (val: string) => boolean;
optional?: boolean;
}

@@ -14,0 +15,0 @@ export declare class SelectionPromptConfig extends PromptConfig {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc