fix(js): mark importPath option as important since it is required for publishable libs (#17509)

This commit is contained in:
Jack Hsu 2023-06-09 03:21:12 -04:00 committed by GitHub
parent 8dcbd84dbe
commit 20359e77a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 8 deletions

View File

@ -59,10 +59,6 @@
"description": "The test environment to use if unitTestRunner is set to jest.",
"default": "jsdom"
},
"importPath": {
"type": "string",
"description": "The library name used to import it, like @myorg/my-awesome-lib."
},
"pascalCaseFiles": {
"type": "boolean",
"description": "Use pascal case file names.",
@ -85,6 +81,11 @@
"description": "Generate a publishable library.",
"x-priority": "important"
},
"importPath": {
"type": "string",
"description": "The library name used to import it, like @myorg/my-awesome-lib. Required for publishable library.",
"x-priority": "important"
},
"buildable": {
"type": "boolean",
"default": true,

View File

@ -59,10 +59,6 @@
"description": "The test environment to use if unitTestRunner is set to jest.",
"default": "jsdom"
},
"importPath": {
"type": "string",
"description": "The library name used to import it, like @myorg/my-awesome-lib."
},
"pascalCaseFiles": {
"type": "boolean",
"description": "Use pascal case file names.",
@ -85,6 +81,11 @@
"description": "Generate a publishable library.",
"x-priority": "important"
},
"importPath": {
"type": "string",
"description": "The library name used to import it, like @myorg/my-awesome-lib. Required for publishable library.",
"x-priority": "important"
},
"buildable": {
"type": "boolean",
"default": true,