@financial-times/dotcom-build-code-splitting 11.0.5 → 11.1.0
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/dist/node/index.js +1 -5
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -10
- package/src/index.ts +1 -5
package/dist/node/index.js
CHANGED
|
@@ -79,11 +79,7 @@ class PageKitCodeSplittingPlugin {
|
|
|
79
79
|
const addSharedVolatileCodeSplitting = bundleTypes_1.createBundleWithPackages({
|
|
80
80
|
compiler,
|
|
81
81
|
name: 'shared.volatile',
|
|
82
|
-
packages: [
|
|
83
|
-
'@financial-times/n-tracking',
|
|
84
|
-
'@financial-times/n-syndication',
|
|
85
|
-
'@financial-times/n-feedback'
|
|
86
|
-
],
|
|
82
|
+
packages: ['@financial-times/n-tracking', '@financial-times/n-syndication'],
|
|
87
83
|
usedInUnknownWay: true
|
|
88
84
|
});
|
|
89
85
|
new reliable_module_ids_plugin_1.default().apply(compiler);
|
|
@@ -472,7 +472,7 @@
|
|
|
472
472
|
"affectsGlobalScope": false
|
|
473
473
|
},
|
|
474
474
|
"../src/index.ts": {
|
|
475
|
-
"version": "
|
|
475
|
+
"version": "fcc5559a5ce851620bdbe737851dd195029845cf1fedfa307ed22c8c8e486391",
|
|
476
476
|
"signature": "8f9661ac6656615ee7f0754bc2a1368ee054d5a78dd27389d4ef92d7d204bc4d",
|
|
477
477
|
"affectsGlobalScope": false
|
|
478
478
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@financial-times/dotcom-build-code-splitting",
|
|
3
|
-
"version": "11.0
|
|
3
|
+
"version": "11.1.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/node/index.js",
|
|
6
6
|
"types": "dist/node/index.d.ts",
|
|
@@ -18,15 +18,6 @@
|
|
|
18
18
|
"author": "",
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"dateformat": "^3.0.0 || ^4.0.0",
|
|
22
|
-
"focus-visible": "^5.0.0",
|
|
23
|
-
"fontfaceobserver": "^2.0.9",
|
|
24
|
-
"ftdomdelegate": "^5.0.0",
|
|
25
|
-
"hyperons": "2.0.0",
|
|
26
|
-
"preact": "^10.18.2",
|
|
27
|
-
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
28
|
-
"ready-state": "^2.0.5",
|
|
29
|
-
"regenerator-runtime": "^0.14.0",
|
|
30
21
|
"webpack": "^4.39.2"
|
|
31
22
|
},
|
|
32
23
|
"dependencies": {
|
package/src/index.ts
CHANGED
|
@@ -88,11 +88,7 @@ export class PageKitCodeSplittingPlugin {
|
|
|
88
88
|
const addSharedVolatileCodeSplitting = createBundleWithPackages({
|
|
89
89
|
compiler,
|
|
90
90
|
name: 'shared.volatile',
|
|
91
|
-
packages: [
|
|
92
|
-
'@financial-times/n-tracking',
|
|
93
|
-
'@financial-times/n-syndication',
|
|
94
|
-
'@financial-times/n-feedback'
|
|
95
|
-
],
|
|
91
|
+
packages: ['@financial-times/n-tracking', '@financial-times/n-syndication'],
|
|
96
92
|
usedInUnknownWay: true
|
|
97
93
|
})
|
|
98
94
|
|