-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.js
More file actions
117 lines (115 loc) · 2.72 KB
/
rollup.config.js
File metadata and controls
117 lines (115 loc) · 2.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import typescript from 'rollup-plugin-typescript2';
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
import postcss from 'rollup-plugin-postcss';
import pkg from './package.json';
// 'use client' direktifini koruyan özel plugin
const preserveUseClient = () => {
return {
name: 'preserve-use-client',
renderChunk(code) {
// Eğer 'use client' direktifi yoksa, kodu olduğu gibi döndür
if (!code.includes("'use client'") && !code.includes('"use client"')) {
return null;
}
return null;
}
};
};
export default [
{
input: 'src/index.ts',
output: [
{
file: pkg.main,
format: 'cjs',
exports: 'named',
sourcemap: true,
name: 'direactree',
inlineDynamicImports: true
},
{
file: pkg.module,
format: 'esm',
exports: 'named',
sourcemap: true,
inlineDynamicImports: true
},
],
plugins: [
preserveUseClient(),
peerDepsExternal(),
resolve({
extensions: ['.js', '.jsx', '.ts', '.tsx']
}),
commonjs(),
postcss({
modules: false,
autoModules: false,
inject: {
insertAt: 'top'
},
minimize: true,
extract: false,
extensions: ['.css'],
use: ['sass', 'stylus', 'less'],
}),
typescript({
useTsconfigDeclarationDir: true,
tsconfigOverride: {
exclude: ['**/*.stories.tsx', '**/*.test.tsx'],
},
}),
],
external: ['react', 'react-dom']
},
{
input: 'src/next.ts',
output: [
{
file: 'dist/next.js',
format: 'cjs',
exports: 'named',
sourcemap: true,
name: 'direactree-next',
inlineDynamicImports: true,
banner: "'use client';"
},
{
file: 'dist/next.esm.js',
format: 'esm',
exports: 'named',
sourcemap: true,
inlineDynamicImports: true,
banner: "'use client';"
},
],
plugins: [
preserveUseClient(),
peerDepsExternal(),
resolve({
extensions: ['.js', '.jsx', '.ts', '.tsx']
}),
commonjs(),
postcss({
modules: false,
autoModules: false,
inject: {
insertAt: 'top'
},
minimize: true,
extract: false,
extensions: ['.css'],
use: ['sass', 'stylus', 'less'],
}),
typescript({
useTsconfigDeclarationDir: true,
tsconfigOverride: {
exclude: ['**/*.stories.tsx', '**/*.test.tsx'],
},
}),
],
external: ['react', 'react-dom']
}
];