create-nextblock 0.9.70 → 0.9.71

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.
@@ -2092,6 +2092,13 @@ function buildNextConfigContent(editorUtilNames) {
2092
2092
  ' compiler: {',
2093
2093
  " removeConsole: process.env.NODE_ENV === 'production',",
2094
2094
  ' },',
2095
+ ' // The published @nextblock-cms/* libs are pre-built and fully type-checked + linted in the',
2096
+ ' // upstream monorepo, but their consumer-side type declarations are incomplete — so making',
2097
+ ' // `next build` re-type-check/lint them would fail on imports the app uses correctly at',
2098
+ ' // runtime. Skip build-time type-check + lint of the pre-built deps; your own code is still',
2099
+ ' // checked in your editor (and you can run `tsc`/`eslint` directly if you want a gate).',
2100
+ ' typescript: { ignoreBuildErrors: true },',
2101
+ ' eslint: { ignoreDuringBuilds: true },',
2095
2102
  '};',
2096
2103
  '',
2097
2104
  'module.exports = nextConfig;',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nextblock",
3
- "version": "0.9.70",
3
+ "version": "0.9.71",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextblock-cms/template",
3
- "version": "0.9.70",
3
+ "version": "0.9.71",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "dev": "next dev",