@mrktg-ost/create-project 0.1.0 → 0.2.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrktg-ost/create-project",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Генератор лендингов брендов Островка: npm create @mrktg-ost/project my-landing",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"url": "git+ssh://git@gitlab.ostrovok.in/marketing-frontend/project-generator.git"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@mrktg/project-generator": "^1.0
|
|
25
|
+
"@mrktg/project-generator": "^1.1.0",
|
|
26
26
|
"@mrktg-ost/brands": "^1.0.0"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
@@ -24,16 +24,18 @@ const { title = SITE.brandTitle, description = "" } = Astro.props;
|
|
|
24
24
|
{description && <meta name="description" content={description} />}
|
|
25
25
|
<link rel="icon" href="{{FAVICON_URL}}" type="{{FAVICON_TYPE}}" />
|
|
26
26
|
<link rel="canonical" href={SITE.prodUrl} />
|
|
27
|
+
{{#FLUID}}
|
|
27
28
|
|
|
28
29
|
<!-- Флюидная вёрстка: плавающий font-size на html, 1rem = 1px макета (репозиторий clamp-scaling) -->
|
|
29
30
|
<link rel="stylesheet" href="{{CLAMP_SCALING_BASE_URL}}/media.css" />
|
|
30
31
|
<link rel="stylesheet" href="{{CLAMP_SCALING_BASE_URL}}/base.css" />
|
|
32
|
+
{{/FLUID}}
|
|
31
33
|
|
|
32
34
|
<!-- Аналитика региона {{REGION}} -->
|
|
33
35
|
<script src="{{ANALYTICS_LOADER_URL}}" async is:inline></script>
|
|
34
36
|
</head>
|
|
35
37
|
<body>
|
|
36
|
-
<ThemeProvider theme={theme} fluidMode={
|
|
38
|
+
<ThemeProvider theme={theme} fluidMode={SITE.fluid}>
|
|
37
39
|
<slot />
|
|
38
40
|
</ThemeProvider>
|
|
39
41
|
</body>
|