@newlogic-digital/core 2.0.0 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +17 -2
- package/package.json +8 -8
package/index.js
CHANGED
@@ -39,6 +39,17 @@ const posthtmlPrism = {
|
|
39
39
|
}
|
40
40
|
}
|
41
41
|
|
42
|
+
const postcssImportSupports = {
|
43
|
+
name: 'postcss-import-supports',
|
44
|
+
transform (code, path) {
|
45
|
+
if (path.endsWith('.css')) {
|
46
|
+
return {
|
47
|
+
code: code.replace('@media supports', '@supports')
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
42
53
|
/**
|
43
54
|
* @type {import('@newlogic-digital/core/types').PluginUserConfig}
|
44
55
|
*/
|
@@ -67,7 +78,8 @@ const defaultOptions = {
|
|
67
78
|
renderTransformedHtml: (filename) => dirname(filename).endsWith('email'),
|
68
79
|
globals: {
|
69
80
|
srcPath: resolve(process.cwd(), 'src'),
|
70
|
-
templatesPath: resolve(process.cwd(), 'src/templates')
|
81
|
+
templatesPath: resolve(process.cwd(), 'src/templates'),
|
82
|
+
template: './src/templates/Layout/Main.latte'
|
71
83
|
},
|
72
84
|
functions: {
|
73
85
|
pages: () => {
|
@@ -107,7 +119,8 @@ const plugin = (options = {}) => {
|
|
107
119
|
...templatesPlugins,
|
108
120
|
juice(options.juice),
|
109
121
|
send(options.send),
|
110
|
-
posthtmlPrism
|
122
|
+
posthtmlPrism,
|
123
|
+
postcssImportSupports
|
111
124
|
]
|
112
125
|
|
113
126
|
return [{
|
@@ -147,6 +160,8 @@ const plugin = (options = {}) => {
|
|
147
160
|
|
148
161
|
const outDir = resolve(userConfig.root ?? process.cwd(), 'public')
|
149
162
|
|
163
|
+
userConfig.publicDir = userConfig.publicDir ?? false
|
164
|
+
|
150
165
|
if (userConfig.build && !userConfig.build.outDir) {
|
151
166
|
userConfig.build.outDir = outDir
|
152
167
|
}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@newlogic-digital/core",
|
3
3
|
"type": "module",
|
4
|
-
"version": "2.0.
|
4
|
+
"version": "2.0.2",
|
5
5
|
"main": "index.js",
|
6
6
|
"author": "New Logic Studio s.r.o.",
|
7
7
|
"description": "Set of tools that can be used to create modern web applications",
|
@@ -12,27 +12,27 @@
|
|
12
12
|
},
|
13
13
|
"dependencies": {
|
14
14
|
"@vituum/vite-plugin-posthtml": "^1.0.0",
|
15
|
-
"@vituum/vite-plugin-juice": "^1.
|
15
|
+
"@vituum/vite-plugin-juice": "^1.1.0",
|
16
16
|
"@vituum/vite-plugin-latte": "^1.0.0",
|
17
17
|
"@vituum/vite-plugin-twig": "^1.0.0",
|
18
18
|
"@vituum/vite-plugin-tailwindcss": "^1.0.0",
|
19
|
-
"@vituum/vite-plugin-send": "^1.0.
|
19
|
+
"@vituum/vite-plugin-send": "^1.0.1",
|
20
20
|
"vituum": "^1.0.0",
|
21
21
|
"posthtml": "^0.16.6",
|
22
22
|
"posthtml-prism": "^2.0.0",
|
23
23
|
"prismjs": "^1.29.0",
|
24
24
|
"html-minifier-terser": "^7.2.0",
|
25
25
|
"lodash": "^4.17.21",
|
26
|
-
"fast-glob": "^3.
|
26
|
+
"fast-glob": "^3.3.1",
|
27
27
|
"fs-extra": "^11.1.1",
|
28
28
|
"picocolors": "^1.0.0"
|
29
29
|
},
|
30
30
|
"devDependencies": {
|
31
|
-
"@types/node": "^20.
|
32
|
-
"eslint": "^8.
|
31
|
+
"@types/node": "^20.4.5",
|
32
|
+
"eslint": "^8.46.0",
|
33
33
|
"eslint-config-standard": "^17.1.0",
|
34
|
-
"typescript": "^5.1.
|
35
|
-
"vite": "^4.
|
34
|
+
"typescript": "^5.1.6",
|
35
|
+
"vite": "^4.4.7"
|
36
36
|
},
|
37
37
|
"files": [
|
38
38
|
"latte",
|