@hubspot/local-dev-lib 0.3.7 → 0.3.8

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.
@@ -2,3 +2,4 @@ export declare const ALLOWED_EXTENSIONS: Set<string>;
2
2
  export declare const HUBL_EXTENSIONS: Set<string>;
3
3
  export declare const MODULE_EXTENSION = "module";
4
4
  export declare const FUNCTIONS_EXTENSION = "functions";
5
+ export declare const FOLDER_DOT_EXTENSIONS: string[];
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FUNCTIONS_EXTENSION = exports.MODULE_EXTENSION = exports.HUBL_EXTENSIONS = exports.ALLOWED_EXTENSIONS = void 0;
3
+ exports.FOLDER_DOT_EXTENSIONS = exports.FUNCTIONS_EXTENSION = exports.MODULE_EXTENSION = exports.HUBL_EXTENSIONS = exports.ALLOWED_EXTENSIONS = void 0;
4
4
  exports.ALLOWED_EXTENSIONS = new Set([
5
5
  'css',
6
6
  'js',
@@ -24,3 +24,4 @@ exports.ALLOWED_EXTENSIONS = new Set([
24
24
  exports.HUBL_EXTENSIONS = new Set(['css', 'html', 'js']);
25
25
  exports.MODULE_EXTENSION = 'module';
26
26
  exports.FUNCTIONS_EXTENSION = 'functions';
27
+ exports.FOLDER_DOT_EXTENSIONS = [exports.FUNCTIONS_EXTENSION, exports.MODULE_EXTENSION];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubspot/local-dev-lib",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "description": "Provides library functionality for HubSpot local development tooling, including the HubSpot CLI",
5
5
  "main": "lib/index.js",
6
6
  "repository": {