@bigbinary/neeto-commons-frontend 4.13.113 → 4.13.114

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.
@@ -24,6 +24,8 @@ dotenv.config({ path: ".env.development" });
24
24
  const port = process.env.DEVSERVER_PORT || 8000;
25
25
  const root = "app/javascript/packs";
26
26
 
27
+ const isTestEnv = process.env.TEST_ENV === "development";
28
+
27
29
  const warmupClientFiles = fs.existsSync(root)
28
30
  ? fs
29
31
  .readdirSync(root)
@@ -49,7 +51,12 @@ const config = {
49
51
  port,
50
52
  origin: `http://localhost:${port}`,
51
53
  cors: true,
52
- warmup: { clientFiles: warmupClientFiles },
54
+ warmup: {
55
+ clientFiles: [
56
+ ...warmupClientFiles,
57
+ ...(isTestEnv ? ["./app/javascript/**/*.{js,jsx,ts,tsx,json}"] : []),
58
+ ],
59
+ },
53
60
  },
54
61
  build: {
55
62
  manifest: true,
package/dist/.ready CHANGED
@@ -1 +1 @@
1
- Built at 2026-03-20T05:57:05.732Z
1
+ Built at 2026-03-25T13:08:53.628Z
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-commons-frontend",
3
- "version": "4.13.113",
3
+ "version": "4.13.114",
4
4
  "description": "A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.",
5
5
  "repository": "git@github.com:bigbinary/neeto-commons-frontend.git",
6
6
  "author": "Amaljith K <amaljith.k@bigbinary.com>",
@@ -85,14 +85,14 @@
85
85
  "@babel/runtime": "7.26.10",
86
86
  "@babel/types": "^7.20.7",
87
87
  "@bigbinary/babel-preset-neeto": "1.0.14",
88
- "@bigbinary/eslint-plugin-neeto": "1.8.3",
88
+ "@bigbinary/eslint-plugin-neeto": "1.9.0",
89
89
  "@bigbinary/neeto-audit-frontend": "2.4.3",
90
90
  "@bigbinary/neeto-cist": "1.0.17",
91
- "@bigbinary/neeto-commons-frontend": "4.13.108",
91
+ "@bigbinary/neeto-commons-frontend": "4.13.111",
92
92
  "@bigbinary/neeto-editor": "1.47.99",
93
93
  "@bigbinary/neeto-hotkeys": "1.0.9",
94
94
  "@bigbinary/neeto-icons": "1.20.86",
95
- "@bigbinary/neeto-molecules": "4.1.31",
95
+ "@bigbinary/neeto-molecules": "4.1.38",
96
96
  "@bigbinary/neeto-time-zones": "0.8.20",
97
97
  "@bigbinary/neetoui": "8.3.78",
98
98
  "@eslint/compat": "^1.2.8",
@@ -218,11 +218,11 @@
218
218
  "@bigbinary/babel-preset-neeto": "1.0.14",
219
219
  "@bigbinary/eslint-plugin-neeto": "1.8.0",
220
220
  "@bigbinary/neeto-cist": "1.0.17",
221
- "@bigbinary/neeto-commons-frontend": "4.13.108",
221
+ "@bigbinary/neeto-commons-frontend": "4.13.111",
222
222
  "@bigbinary/neeto-editor": "1.47.99",
223
223
  "@bigbinary/neeto-hotkeys": "1.0.9",
224
224
  "@bigbinary/neeto-icons": "1.20.86",
225
- "@bigbinary/neeto-molecules": "4.1.31",
225
+ "@bigbinary/neeto-molecules": "4.1.38",
226
226
  "@bigbinary/neeto-time-zones": "0.8.20",
227
227
  "@bigbinary/neetoui": "8.3.78",
228
228
  "@faker-js/faker": "8.2.0",