lwr 0.10.2 → 0.10.3

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.
@@ -129,13 +129,7 @@ function createBuildCommand() {
129
129
  } else {
130
130
  const defaultConfigContent = {
131
131
  ssrEnabled: true,
132
- ssrOnly: [
133
- "config/**",
134
- "loader.js",
135
- "package.json",
136
- "ssr.js",
137
- "site/.metadata/**"
138
- ],
132
+ ssrOnly: ["config/**", "package.json", "ssr.js", "site/.metadata/**"],
139
133
  ssrShared: [],
140
134
  ssrParameters: {
141
135
  ssrFunctionNodeVersion,
@@ -139,13 +139,7 @@ export function createBuildCommand() {
139
139
  // Enables building the files necessary for server-side rendering.
140
140
  ssrEnabled: true,
141
141
  // Files available to the server-side rendering system and NOT through the /mobify/bundle/ path.
142
- ssrOnly: [
143
- 'config/**',
144
- 'loader.js',
145
- 'package.json',
146
- 'ssr.js',
147
- 'site/.metadata/**',
148
- ],
142
+ ssrOnly: ['config/**', 'package.json', 'ssr.js', 'site/.metadata/**'],
149
143
  // Files available to the server-side rendering system AND through the /mobify/bundle/ path.
150
144
  // The site metadata folder starts with a ".", so it is automatically excluded
151
145
  ssrShared: [],
package/package.json CHANGED
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "type": "module",
20
20
  "types": "build/es/index.d.ts",
21
- "version": "0.10.2",
21
+ "version": "0.10.3",
22
22
  "module": "build/es/index.js",
23
23
  "main": "build/cjs/index.cjs",
24
24
  "files": [
@@ -41,21 +41,21 @@
41
41
  }
42
42
  },
43
43
  "dependencies": {
44
- "@lwrjs/config": "0.10.2",
45
- "@lwrjs/core": "0.10.2",
46
- "@lwrjs/diagnostics": "0.10.2",
47
- "@lwrjs/shared-utils": "0.10.2",
48
- "@lwrjs/tools": "0.10.2",
44
+ "@lwrjs/config": "0.10.3",
45
+ "@lwrjs/core": "0.10.3",
46
+ "@lwrjs/diagnostics": "0.10.3",
47
+ "@lwrjs/shared-utils": "0.10.3",
48
+ "@lwrjs/tools": "0.10.3",
49
49
  "chalk": "^4.1.0",
50
50
  "commander": "^10.0.0",
51
51
  "fs-extra": "^11.1.1"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@commander-js/extra-typings": "^10.0.2",
55
- "@lwrjs/types": "0.10.2"
55
+ "@lwrjs/types": "0.10.3"
56
56
  },
57
57
  "engines": {
58
58
  "node": ">=16.0.0"
59
59
  },
60
- "gitHead": "40988dfc093a3b9dea859f1bf61a49bca1edb0c5"
60
+ "gitHead": "a7b63f17b331c4f2573a67be18c3c4c37993cfdd"
61
61
  }