core-maugli 1.2.43 β 1.2.44
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/README.md
CHANGED
|
@@ -30,6 +30,37 @@ netlify init
|
|
|
30
30
|
netlify deploy --prod
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
+
## π Netlify Plugins & Integrations
|
|
34
|
+
|
|
35
|
+
Maugli Blog automatically includes recommended Netlify plugins for optimal performance and functionality. The `netlify.toml` configuration is auto-generated during installation.
|
|
36
|
+
|
|
37
|
+
### π Auto-Configured Plugins
|
|
38
|
+
|
|
39
|
+
The following plugins are automatically included:
|
|
40
|
+
|
|
41
|
+
- **@netlify/plugin-lighthouse** - Performance audits
|
|
42
|
+
- **netlify-plugin-submit-sitemap** - SEO optimization
|
|
43
|
+
- **netlify-plugin-checklinks** - Link validation
|
|
44
|
+
- **netlify-plugin-image-optim** - Image optimization
|
|
45
|
+
- **netlify-plugin-minify-html** - HTML compression
|
|
46
|
+
- **netlify-plugin-inline-critical-css** - Performance boost
|
|
47
|
+
|
|
48
|
+
### π Optional Integrations
|
|
49
|
+
|
|
50
|
+
For advanced functionality, manually install these plugins from the Netlify UI:
|
|
51
|
+
|
|
52
|
+
#### Bluesky Custom Domain
|
|
53
|
+
Verify your custom domain for Bluesky social media integration.
|
|
54
|
+
|
|
55
|
+
**Setup:** [Install Bluesky Plugin](https://app.netlify.com/extensions/bluesky-custom-domain)
|
|
56
|
+
|
|
57
|
+
#### Supabase Integration
|
|
58
|
+
Add backend functionality with Supabase database and authentication.
|
|
59
|
+
|
|
60
|
+
**Setup:** [Install Supabase Plugin](https://app.netlify.com/extensions/supabase)
|
|
61
|
+
|
|
62
|
+
> **Note:** These integrations require manual configuration after installation. Visit the provided links for detailed setup instructions.
|
|
63
|
+
|
|
33
64
|
## Getting started
|
|
34
65
|
|
|
35
66
|
To start a new project in an empty folder run:
|
package/package.json
CHANGED
|
@@ -150,9 +150,21 @@ async function main() {
|
|
|
150
150
|
// List installed plugins
|
|
151
151
|
if (config.netlify?.plugins && config.netlify.plugins.length > 0) {
|
|
152
152
|
console.log('π Netlify plugins configured:');
|
|
153
|
+
|
|
154
|
+
const manualSetupPlugins = [
|
|
155
|
+
'netlify-plugin-bluesky-custom-domain',
|
|
156
|
+
'netlify-plugin-supabase'
|
|
157
|
+
];
|
|
158
|
+
|
|
153
159
|
config.netlify.plugins.forEach(plugin => {
|
|
154
|
-
|
|
160
|
+
const needsManualSetup = manualSetupPlugins.includes(plugin);
|
|
161
|
+
const indicator = needsManualSetup ? 'βοΈ ' : 'β
';
|
|
162
|
+
console.log(` ${indicator}${plugin}`);
|
|
155
163
|
});
|
|
164
|
+
|
|
165
|
+
console.log('\nπ Manual setup required for:');
|
|
166
|
+
console.log(' π Bluesky: https://app.netlify.com/extensions/bluesky-custom-domain');
|
|
167
|
+
console.log(' ποΈ Supabase: https://app.netlify.com/extensions/supabase');
|
|
156
168
|
}
|
|
157
169
|
|
|
158
170
|
console.log('π File location:', outputPath);
|
|
@@ -14,7 +14,7 @@ import { execSync } from 'child_process';
|
|
|
14
14
|
import fs from 'fs';
|
|
15
15
|
import path from 'path';
|
|
16
16
|
|
|
17
|
-
const CURRENT_VERSION = '1.2.
|
|
17
|
+
const CURRENT_VERSION = '1.2.44';
|
|
18
18
|
|
|
19
19
|
// ΠΡΠ°Π²ΠΈΠ»ΡΠ½ΡΠ΅ ΡΠΊΡΠΈΠΏΡΡ Π΄Π»Ρ package.json
|
|
20
20
|
const CORRECT_SCRIPTS = {
|
|
@@ -150,7 +150,9 @@ export const maugliConfig: MaugliConfig = {
|
|
|
150
150
|
'netlify-plugin-image-optim', // Image optimization
|
|
151
151
|
'netlify-plugin-minify-html', // HTML minification
|
|
152
152
|
'netlify-plugin-inline-critical-css', // Inline critical CSS
|
|
153
|
-
'netlify-plugin-hashfiles'
|
|
153
|
+
'netlify-plugin-hashfiles', // Cache optimization with file hashing
|
|
154
|
+
'netlify-plugin-bluesky-custom-domain', // Bluesky custom domain verification
|
|
155
|
+
'netlify-plugin-supabase' // Supabase integration
|
|
154
156
|
], // Recommended Netlify plugins from UI
|
|
155
157
|
buildCommand: 'npm run build', // Default build command
|
|
156
158
|
publishDir: 'dist', // Astro output directory
|