Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 505de37

Browse files
committed
build: enable post-build scripts
1 parent 9476e8e commit 505de37

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

.npmrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
auto-install-peers = false
22
node-linker = hoisted
33
shamefully-hoist = true
4-
dedupe-direct-deps = true
4+
dedupe-direct-deps = true
5+
enable-pre-post-scripts=true

src/app/components/protos/hero-section.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,10 @@ import { Button } from '../ui/button';
209209

210210
/* eslint-disable */
211211

212+
/* eslint-disable */
213+
214+
/* eslint-disable */
215+
212216
function TypingAnimation() {
213217
const el = useRef(null);
214218

src/app/components/reusables/code/code-block.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,16 @@ import CopyButton from './copy-code';
386386
/* eslint-disable */
387387
// @ts-nocheck
388388

389+
// react-syntax-highlighter has no types
390+
391+
/* eslint-disable */
392+
// @ts-nocheck
393+
394+
// react-syntax-highlighter has no types
395+
396+
/* eslint-disable */
397+
// @ts-nocheck
398+
389399
// react-syntax-highlighter has no types
390400
/* eslint-disable */
391401
// @ts-nocheck

src/app/icon.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { ImageResponse } from 'next/og'
1+
import { ImageResponse } from 'next/og';
22

33
export const size = {
44
width: 32,
55
height: 32,
6-
}
7-
export const contentType = 'image/png'
6+
};
7+
export const contentType = 'image/png';
88

99
export default function Icon() {
1010
return new ImageResponse(
@@ -27,5 +27,5 @@ export default function Icon() {
2727
{
2828
...size,
2929
}
30-
)
30+
);
3131
}

0 commit comments

Comments
 (0)