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.20 to 0.0.21

10

assets/gah-config-schema.json

@@ -6,3 +6,3 @@ {

"type": "string",
"default": "https://raw.githubusercontent.com/awdware/gah/master/assets/gah-config-schema.json"
"default": "https://raw.githubusercontent.com/awdware/gah/master/shared/assets/gah-config-schema.json"
},

@@ -15,2 +15,6 @@ "plugins": {

}
},
"skipTsConfigPathsAdjustments": {
"description": "If this property is set to true, gah will not adjust the paths object in the tsconfig json of the module(s) in this folder.",
"type": "boolean"
}

@@ -30,2 +34,6 @@ },

"description": "The configuration for the plugin. Plugins add their own properties, please look at the documentation for the used plugin to see which settings are available."
},
"version": {
"description": "The version of the plugin that should be used.",
"type": "string"
}

@@ -32,0 +40,0 @@ }

2

assets/gah-environment-schema.json

@@ -7,3 +7,3 @@ {

"type": "string",
"default": "\"https://raw.githubusercontent.com/awdware/gah/master/assets/gah-environment-schema.json\""
"default": "https://raw.githubusercontent.com/awdware/gah/master/shared/assets/gah-environment-schema.json"
},

@@ -10,0 +10,0 @@ "production": {

@@ -6,3 +6,3 @@ {

"type": "string",
"default": "https://raw.githubusercontent.com/awdware/gah/master/assets/gah-host-schema.json"
"default": "https://raw.githubusercontent.com/awdware/gah/master/shared/assets/gah-host-schema.json"
},

@@ -16,2 +16,7 @@ "modules": {

},
"aot": {
"description": "Use aot compilation for the host? (Enabled by default)",
"type": "boolean",
"default": true
},
"isHost": {

@@ -18,0 +23,0 @@ "type": "boolean"

@@ -6,3 +6,3 @@ {

"type": "string",
"default": "https://raw.githubusercontent.com/awdware/gah/master/assets/gah-module-schema.json"
"default": "https://raw.githubusercontent.com/awdware/gah/master/shared/assets/gah-module-schema.json"
},

@@ -28,2 +28,6 @@ "modules": {

},
"packageName": {
"description": "The package name of the module. This determins the prefix of the import statement to this module. \"import {...} from '@packageName/moduleName'\"",
"type": "string"
},
"facadePath": {

@@ -30,0 +34,0 @@ "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.",

@@ -8,3 +8,7 @@ import { GahPluginDependencyConfig } from './gah-plugin-dependency-config';

plugins?: GahPluginDependencyConfig[];
/**
* If this property is set to true, gah will not adjust the paths object in the tsconfig json of the module(s) in this folder.
*/
skipTsConfigPathsAdjustments: boolean;
constructor();
}

@@ -6,3 +6,3 @@ "use strict";

function GahConfig() {
this.$schema = 'https://raw.githubusercontent.com/awdware/gah/master/assets/gah-config-schema.json';
this.$schema = 'https://raw.githubusercontent.com/awdware/gah/master/shared/assets/gah-config-schema.json';
}

@@ -9,0 +9,0 @@ return GahConfig;

@@ -6,3 +6,3 @@ "use strict";

function GahEnvironment() {
this.$schema = '"https://raw.githubusercontent.com/awdware/gah/master/assets/gah-environment-schema.json"';
this.$schema = 'https://raw.githubusercontent.com/awdware/gah/master/shared/assets/gah-environment-schema.json';
}

@@ -9,0 +9,0 @@ return GahEnvironment;

@@ -6,3 +6,3 @@ "use strict";

function GahHost() {
this.$schema = 'https://raw.githubusercontent.com/awdware/gah/master/assets/gah-host-schema.json';
this.$schema = 'https://raw.githubusercontent.com/awdware/gah/master/shared/assets/gah-host-schema.json';
/**

@@ -9,0 +9,0 @@ * Use aot compilation for the host? (Enabled by default)

@@ -6,3 +6,3 @@ "use strict";

function GahModule() {
this.$schema = 'https://raw.githubusercontent.com/awdware/gah/master/assets/gah-module-schema.json';
this.$schema = 'https://raw.githubusercontent.com/awdware/gah/master/shared/assets/gah-module-schema.json';
this.modules = new Array();

@@ -9,0 +9,0 @@ }

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

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

@@ -8,3 +8,7 @@ import { GahPluginDependencyConfig } from './gah-plugin-dependency-config';

plugins?: GahPluginDependencyConfig[];
/**
* If this property is set to true, gah will not adjust the paths object in the tsconfig json of the module(s) in this folder.
*/
skipTsConfigPathsAdjustments: boolean;
constructor();
}

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

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