@beemo/config-constants
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -9,3 +9,4 @@ export declare const CASE_SENSITIVE = false; | ||
export declare const TESTS_LIST: string[]; | ||
export declare const NON_TS_GLOB = "\\.{css,sass,scss,less,gif,png,jpg,jpeg,svg,gql,graphql,yml,yaml}$"; | ||
export declare const NON_TS_REGEX = "\\.{css,sass,scss,less,gif,png,jpg,jpeg,svg,gql,graphql,yml,yaml}$"; | ||
export declare const TS_PATH_PREFIX_REGEX = "^:[a-z]"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -21,5 +21,7 @@ // Generated with Packemon: https://packemon.dev | ||
const TESTS_LIST = [TEST_UTILS_GLOB, 'test.{ts,tsx}']; // List of non-JS/TS file extensions | ||
const TESTS_LIST = [TEST_UTILS_GLOB, 'test.{ts,tsx}']; // Pattern of non-JS/TS file extensions | ||
const NON_TS_GLOB = '\\.{css,sass,scss,less,gif,png,jpg,jpeg,svg,gql,graphql,yml,yaml}$'; | ||
const NON_TS_REGEX = '\\.{css,sass,scss,less,gif,png,jpg,jpeg,svg,gql,graphql,yml,yaml}$'; // Pattern to find all custom TypeScript paths | ||
const TS_PATH_PREFIX_REGEX = '^:[a-z]'; | ||
exports.ALL_FILES_GLOB = ALL_FILES_GLOB; | ||
@@ -29,3 +31,3 @@ exports.CASE_SENSITIVE = CASE_SENSITIVE; | ||
exports.IGNORE_LIST = IGNORE_LIST; | ||
exports.NON_TS_GLOB = NON_TS_GLOB; | ||
exports.NON_TS_REGEX = NON_TS_REGEX; | ||
exports.SOURCE_FILES_GLOB = SOURCE_FILES_GLOB; | ||
@@ -35,2 +37,3 @@ exports.TESTS_LIST = TESTS_LIST; | ||
exports.TEST_UTILS_GLOB = TEST_UTILS_GLOB; | ||
exports.TS_PATH_PREFIX_REGEX = TS_PATH_PREFIX_REGEX; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@beemo/config-constants", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Reusable constants for Beemo configurations.", | ||
@@ -37,3 +37,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "5803e9e9b738438545d3e23070d35df791c03a9f" | ||
"gitHead": "243c9fd3ea3720f2159c11ad633d3c70a7b9ce46" | ||
} |
@@ -29,3 +29,6 @@ // Support consistent sorting across the board | ||
// List of non-JS/TS file extensions | ||
export const NON_TS_GLOB = '\\.{css,sass,scss,less,gif,png,jpg,jpeg,svg,gql,graphql,yml,yaml}$'; | ||
// Pattern of non-JS/TS file extensions | ||
export const NON_TS_REGEX = '\\.{css,sass,scss,less,gif,png,jpg,jpeg,svg,gql,graphql,yml,yaml}$'; | ||
// Pattern to find all custom TypeScript paths | ||
export const TS_PATH_PREFIX_REGEX = '^:[a-z]'; |
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
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
6705
65