@webiny/website-builder-nextjs 0.0.0-unstable.e53eceafb5 → 0.0.0-unstable.eb196ccd2f
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/package.json +14 -10
- package/webpack.d.ts +7 -0
- package/webpack.js +56 -0
- package/webpack.js.map +1 -0
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/website-builder-nextjs",
|
|
3
|
-
"version": "0.0.0-unstable.
|
|
3
|
+
"version": "0.0.0-unstable.eb196ccd2f",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/webiny/webiny-js.git"
|
|
8
8
|
},
|
|
9
9
|
"exports": {
|
|
10
|
-
".": "./index.js"
|
|
10
|
+
".": "./index.js",
|
|
11
|
+
"./webpack": "./webpack.js"
|
|
11
12
|
},
|
|
12
13
|
"description": "A Next.js integration SDK for Webiny Website Builder.",
|
|
13
14
|
"contributors": [
|
|
@@ -17,14 +18,16 @@
|
|
|
17
18
|
],
|
|
18
19
|
"license": "MIT",
|
|
19
20
|
"dependencies": {
|
|
20
|
-
"@webiny/website-builder-react": "0.0.0-unstable.
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"next": "^15"
|
|
21
|
+
"@webiny/website-builder-react": "0.0.0-unstable.eb196ccd2f",
|
|
22
|
+
"postcss": "8.5.6",
|
|
23
|
+
"postcss-import": "16.1.1"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@
|
|
27
|
-
"
|
|
26
|
+
"@types/postcss-import": "14.0.3",
|
|
27
|
+
"@webiny/project-utils": "0.0.0-unstable.eb196ccd2f",
|
|
28
|
+
"next": "15.4.6",
|
|
29
|
+
"typescript": "5.3.3",
|
|
30
|
+
"webpack": "5.101.1"
|
|
28
31
|
},
|
|
29
32
|
"publishConfig": {
|
|
30
33
|
"access": "public",
|
|
@@ -37,10 +40,11 @@
|
|
|
37
40
|
"adio": {
|
|
38
41
|
"ignore": {
|
|
39
42
|
"dependencies": [
|
|
40
|
-
"
|
|
43
|
+
"postcss",
|
|
44
|
+
"postcss-import",
|
|
41
45
|
"@webiny/website-builder-react"
|
|
42
46
|
]
|
|
43
47
|
}
|
|
44
48
|
},
|
|
45
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "eb196ccd2f32296e10f7add6dd7220d4e3abece4"
|
|
46
50
|
}
|
package/webpack.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { WebpackPluginInstance } from "webpack";
|
|
2
|
+
import type { NextConfig } from "next";
|
|
3
|
+
type WebpackConfigContext = Parameters<NonNullable<NextConfig["webpack"]>>[1];
|
|
4
|
+
export declare const injectThemeCss: (entry: string, variableName?: string) => Promise<{
|
|
5
|
+
getPlugins: (context: WebpackConfigContext) => WebpackPluginInstance[];
|
|
6
|
+
}>;
|
|
7
|
+
export {};
|
package/webpack.js
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import fs from "fs";
|
|
2
|
+
import postcss from "postcss";
|
|
3
|
+
import postcssImport from "postcss-import";
|
|
4
|
+
|
|
5
|
+
// We're inferring the type from Next's config type.
|
|
6
|
+
|
|
7
|
+
const buildThemeCss = async entry => {
|
|
8
|
+
// Read CSS entry file.
|
|
9
|
+
const raw = fs.readFileSync(entry, "utf8");
|
|
10
|
+
|
|
11
|
+
// Inline local imports.
|
|
12
|
+
const result = await postcss([postcssImport()]).process(raw, {
|
|
13
|
+
from: entry
|
|
14
|
+
});
|
|
15
|
+
return result.css;
|
|
16
|
+
};
|
|
17
|
+
export const injectThemeCss = async (entry, variableName) => {
|
|
18
|
+
const defineKey = variableName ?? "__THEME_CSS__";
|
|
19
|
+
const initialCss = await buildThemeCss(entry);
|
|
20
|
+
|
|
21
|
+
// Inject as a global constant available in your app.
|
|
22
|
+
let definePlugin;
|
|
23
|
+
const getPlugins = context => {
|
|
24
|
+
const {
|
|
25
|
+
dev,
|
|
26
|
+
webpack
|
|
27
|
+
} = context;
|
|
28
|
+
if (!definePlugin) {
|
|
29
|
+
definePlugin = new webpack.DefinePlugin({
|
|
30
|
+
[defineKey]: JSON.stringify(initialCss)
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
const plugins = [definePlugin];
|
|
34
|
+
if (dev) {
|
|
35
|
+
// Watch for changes and update plugin definitions
|
|
36
|
+
plugins.push({
|
|
37
|
+
apply(compiler) {
|
|
38
|
+
compiler.hooks.afterCompile.tapPromise("WatchThemeCss", async compilation => {
|
|
39
|
+
compilation.fileDependencies.add(entry);
|
|
40
|
+
});
|
|
41
|
+
compiler.hooks.beforeCompile.tapPromise("UpdateThemeCss", async () => {
|
|
42
|
+
const cssValue = await buildThemeCss(entry);
|
|
43
|
+
// Update the definitions on our specific plugin
|
|
44
|
+
definePlugin.definitions[defineKey] = JSON.stringify(cssValue);
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
return plugins;
|
|
50
|
+
};
|
|
51
|
+
return {
|
|
52
|
+
getPlugins
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
//# sourceMappingURL=webpack.js.map
|
package/webpack.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["fs","postcss","postcssImport","buildThemeCss","entry","raw","readFileSync","result","process","from","css","injectThemeCss","variableName","defineKey","initialCss","definePlugin","getPlugins","context","dev","webpack","DefinePlugin","JSON","stringify","plugins","push","apply","compiler","hooks","afterCompile","tapPromise","compilation","fileDependencies","add","beforeCompile","cssValue","definitions"],"sources":["webpack.ts"],"sourcesContent":["import fs from \"fs\";\nimport type { WebpackPluginInstance } from \"webpack\";\nimport postcss from \"postcss\";\nimport postcssImport from \"postcss-import\";\nimport type { NextConfig } from \"next\";\n\n// We're inferring the type from Next's config type.\ntype WebpackConfigContext = Parameters<NonNullable<NextConfig[\"webpack\"]>>[1];\n\nconst buildThemeCss = async (entry: string) => {\n // Read CSS entry file.\n const raw = fs.readFileSync(entry, \"utf8\");\n\n // Inline local imports.\n const result = await postcss([postcssImport()]).process(raw, { from: entry });\n\n return result.css;\n};\n\nexport const injectThemeCss = async (entry: string, variableName?: string) => {\n const defineKey = variableName ?? \"__THEME_CSS__\";\n\n const initialCss = await buildThemeCss(entry);\n\n // Inject as a global constant available in your app.\n let definePlugin: WebpackPluginInstance;\n\n const getPlugins = (context: WebpackConfigContext) => {\n const { dev, webpack } = context;\n\n if (!definePlugin) {\n definePlugin = new webpack.DefinePlugin({ [defineKey]: JSON.stringify(initialCss) });\n }\n\n const plugins: WebpackPluginInstance[] = [definePlugin];\n\n if (dev) {\n // Watch for changes and update plugin definitions\n plugins.push({\n apply(compiler) {\n compiler.hooks.afterCompile.tapPromise(\"WatchThemeCss\", async compilation => {\n compilation.fileDependencies.add(entry);\n });\n\n compiler.hooks.beforeCompile.tapPromise(\"UpdateThemeCss\", async () => {\n const cssValue = await buildThemeCss(entry);\n // Update the definitions on our specific plugin\n definePlugin.definitions[defineKey] = JSON.stringify(cssValue);\n });\n }\n });\n }\n\n return plugins;\n };\n\n return { getPlugins };\n};\n"],"mappings":"AAAA,OAAOA,EAAE,MAAM,IAAI;AAEnB,OAAOC,OAAO,MAAM,SAAS;AAC7B,OAAOC,aAAa,MAAM,gBAAgB;;AAG1C;;AAGA,MAAMC,aAAa,GAAG,MAAOC,KAAa,IAAK;EAC3C;EACA,MAAMC,GAAG,GAAGL,EAAE,CAACM,YAAY,CAACF,KAAK,EAAE,MAAM,CAAC;;EAE1C;EACA,MAAMG,MAAM,GAAG,MAAMN,OAAO,CAAC,CAACC,aAAa,CAAC,CAAC,CAAC,CAAC,CAACM,OAAO,CAACH,GAAG,EAAE;IAAEI,IAAI,EAAEL;EAAM,CAAC,CAAC;EAE7E,OAAOG,MAAM,CAACG,GAAG;AACrB,CAAC;AAED,OAAO,MAAMC,cAAc,GAAG,MAAAA,CAAOP,KAAa,EAAEQ,YAAqB,KAAK;EAC1E,MAAMC,SAAS,GAAGD,YAAY,IAAI,eAAe;EAEjD,MAAME,UAAU,GAAG,MAAMX,aAAa,CAACC,KAAK,CAAC;;EAE7C;EACA,IAAIW,YAAmC;EAEvC,MAAMC,UAAU,GAAIC,OAA6B,IAAK;IAClD,MAAM;MAAEC,GAAG;MAAEC;IAAQ,CAAC,GAAGF,OAAO;IAEhC,IAAI,CAACF,YAAY,EAAE;MACfA,YAAY,GAAG,IAAII,OAAO,CAACC,YAAY,CAAC;QAAE,CAACP,SAAS,GAAGQ,IAAI,CAACC,SAAS,CAACR,UAAU;MAAE,CAAC,CAAC;IACxF;IAEA,MAAMS,OAAgC,GAAG,CAACR,YAAY,CAAC;IAEvD,IAAIG,GAAG,EAAE;MACL;MACAK,OAAO,CAACC,IAAI,CAAC;QACTC,KAAKA,CAACC,QAAQ,EAAE;UACZA,QAAQ,CAACC,KAAK,CAACC,YAAY,CAACC,UAAU,CAAC,eAAe,EAAE,MAAMC,WAAW,IAAI;YACzEA,WAAW,CAACC,gBAAgB,CAACC,GAAG,CAAC5B,KAAK,CAAC;UAC3C,CAAC,CAAC;UAEFsB,QAAQ,CAACC,KAAK,CAACM,aAAa,CAACJ,UAAU,CAAC,gBAAgB,EAAE,YAAY;YAClE,MAAMK,QAAQ,GAAG,MAAM/B,aAAa,CAACC,KAAK,CAAC;YAC3C;YACAW,YAAY,CAACoB,WAAW,CAACtB,SAAS,CAAC,GAAGQ,IAAI,CAACC,SAAS,CAACY,QAAQ,CAAC;UAClE,CAAC,CAAC;QACN;MACJ,CAAC,CAAC;IACN;IAEA,OAAOX,OAAO;EAClB,CAAC;EAED,OAAO;IAAEP;EAAW,CAAC;AACzB,CAAC","ignoreList":[]}
|