@videinfra/static-website-builder 1.15.5 → 1.15.6

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 CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
+ ## [1.15.5] - 2025-05-16
8
+ ### Added
9
+ - "preposition_nbsp" TWIG filter
10
+
7
11
  ## [1.15.0] - 2025-01-20
8
12
  ### Added
9
13
  - Env file support
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@videinfra/static-website-builder",
3
- "version": "1.15.5",
3
+ "version": "1.15.6",
4
4
  "description": "Customizable static site project builder",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -40,12 +40,10 @@ const getWatchGlobPaths = memoize(function () {
40
40
  const sourcePaths = getPaths.getSourcePaths('html');
41
41
  const extensions = getConfig.getTaskConfig('html', 'extensions');
42
42
  const dataExtensions = getConfig.getTaskConfig('data', 'extensions');
43
- const envFiles = getPaths.getPathConfig().env.map((path) => getPaths.getProjectPath(path))
44
43
 
45
44
  return globs.generate(
46
45
  globs.paths(sourcePaths).filesWithExtensions(extensions), // HTML / TWIG files
47
- globs.paths(sourcePaths).filesWithExtensions(dataExtensions), // Data files
48
- envFiles, // env files
46
+ globs.paths(sourcePaths).filesWithExtensions(dataExtensions) // Data files
49
47
  );
50
48
  });
51
49