@apollo-elements/create
Advanced tools
Comparing version 1.2.1 to 1.3.0-alpha.0
@@ -6,2 +6,18 @@ # Change Log | ||
# [1.3.0-alpha.0](https://github.com/apollo-elements/apollo-elements/compare/@apollo-elements/create@1.2.1...@apollo-elements/create@1.3.0-alpha.0) (2020-12-04) | ||
### Bug Fixes | ||
* package export maps ([1eaa0ed](https://github.com/apollo-elements/apollo-elements/commit/1eaa0eda5d329b7c7efdf732b63599b912eb8fc8)) | ||
### Features | ||
* support TypeScript strict mode ([a8953d0](https://github.com/apollo-elements/apollo-elements/commit/a8953d08d8e050d9ad4e5b9728a7ed44fcc18fa8)) | ||
## [1.2.1](https://github.com/apollo-elements/apollo-elements/compare/@apollo-elements/create@1.2.0...@apollo-elements/create@1.2.1) (2020-11-22) | ||
@@ -8,0 +24,0 @@ |
@@ -6,2 +6,2 @@ import { ExecaReturnValue } from 'execa'; | ||
*/ | ||
export declare function codegen(options: BaseOptions): Promise<ExecaReturnValue>; | ||
export declare function codegen(options: BaseOptions): Promise<ExecaReturnValue | void>; |
@@ -9,3 +9,3 @@ import execa, { ExecaReturnValue } from 'execa'; | ||
*/ | ||
export async function codegen(options: BaseOptions): Promise<ExecaReturnValue> { | ||
export async function codegen(options: BaseOptions): Promise<ExecaReturnValue|void> { | ||
if (options.skipCodegen) return; | ||
@@ -12,0 +12,0 @@ console.log('\nGenerating TypeScript Schema...\n'); |
@@ -16,3 +16,3 @@ export interface BaseOptions { | ||
subdir?: string; | ||
type?: Operation; | ||
type: Operation; | ||
sharedCssPath?: string; | ||
@@ -19,0 +19,0 @@ fields?: string; |
@@ -19,3 +19,3 @@ export interface BaseOptions { | ||
subdir?: string; | ||
type?: Operation; | ||
type: Operation; | ||
sharedCssPath?: string; | ||
@@ -22,0 +22,0 @@ fields?: string; |
{ | ||
"name": "@apollo-elements/create", | ||
"version": "1.2.1", | ||
"version": "1.3.0-alpha.0", | ||
"description": "Scaffold apps and components with GraphQL and LitElement", | ||
@@ -8,2 +8,3 @@ "author": "Benny Powers <web@bennypowers.com>", | ||
"type": "commonjs", | ||
"main": "./index.js", | ||
"typings": ".index.d.ts", | ||
@@ -13,5 +14,2 @@ "bin": { | ||
}, | ||
"exports": [ | ||
"./index.js" | ||
], | ||
"keywords": [ | ||
@@ -49,10 +47,10 @@ "generator", | ||
"case": "^1.6.3", | ||
"execa": "^4.0.3", | ||
"execa": "^4.1.0", | ||
"mkdirp": "^1.0.4", | ||
"ncp": "^2.0.0", | ||
"prompts": "^2.3.2", | ||
"prompts": "^2.4.0", | ||
"tslib": "^2.0.3", | ||
"yargs": "^16.0.3" | ||
"yargs": "^16.1.1" | ||
}, | ||
"gitHead": "6fe55e2334c655041f573d4f5c24ae2185029356" | ||
"gitHead": "5de7f7b7d2db6476675f304d6748c5af047ad1c2" | ||
} |
@@ -0,1 +1,2 @@ | ||
"use strict"; | ||
//# sourceMappingURL=prompt.test.js.map |
@@ -72,3 +72,3 @@ import type { BaseOptions, AppOptions, ComponentOptions } from './options'; | ||
}]), | ||
}; | ||
} as ComponentOptions; | ||
} | ||
@@ -75,0 +75,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
699241
1386
3
Updatedexeca@^4.1.0
Updatedprompts@^2.4.0
Updatedyargs@^16.1.1