@storm-software/linting-tools 1.31.31 → 1.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/bin/lint.js +3 -0
- package/package.json +1 -1
- package/src/cli/index.js +3 -0
package/bin/lint.js
CHANGED
|
@@ -282335,6 +282335,9 @@ var StormConfigSchema = objectType({
|
|
|
282335
282335
|
ci: booleanType().default(true).describe("An indicator specifying if the current environment is a CI environment"),
|
|
282336
282336
|
workspaceRoot: stringType().trim().optional().describe("The root directory of the workspace"),
|
|
282337
282337
|
packageDirectory: stringType().trim().optional().describe("The root directory of the package"),
|
|
282338
|
+
externalPackagePatterns: arrayType(stringType()).default([]).describe(
|
|
282339
|
+
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
282340
|
+
),
|
|
282338
282341
|
buildDirectory: stringType().trim().default("dist").describe("The build directory for the workspace"),
|
|
282339
282342
|
runtimeDirectory: stringType().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
282340
282343
|
runtimeVersion: stringType().trim().regex(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.32.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "⚡ A package containing various linting tools used to validate syntax, enforce design standards, and format code in a Storm workspace.",
|
|
6
6
|
"keywords": [
|
package/src/cli/index.js
CHANGED
|
@@ -282290,6 +282290,9 @@ var StormConfigSchema = objectType({
|
|
|
282290
282290
|
ci: booleanType().default(true).describe("An indicator specifying if the current environment is a CI environment"),
|
|
282291
282291
|
workspaceRoot: stringType().trim().optional().describe("The root directory of the workspace"),
|
|
282292
282292
|
packageDirectory: stringType().trim().optional().describe("The root directory of the package"),
|
|
282293
|
+
externalPackagePatterns: arrayType(stringType()).default([]).describe(
|
|
282294
|
+
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
282295
|
+
),
|
|
282293
282296
|
buildDirectory: stringType().trim().default("dist").describe("The build directory for the workspace"),
|
|
282294
282297
|
runtimeDirectory: stringType().trim().default("node_modules/.storm").describe("The runtime directory of Storm"),
|
|
282295
282298
|
runtimeVersion: stringType().trim().regex(
|