create-nextjs-cms 0.5.21 → 0.5.23

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.
Files changed (137) hide show
  1. package/package.json +6 -6
  2. package/templates/default/_gitignore +1 -1
  3. package/templates/default/app/(auth)/auth/login/LoginPage.tsx +5 -5
  4. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/LICENSE +191 -0
  5. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/README.md +118 -0
  6. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/install/build.js +38 -0
  7. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/install/check.js +14 -0
  8. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/channel.js +177 -0
  9. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/colour.js +195 -0
  10. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/composite.js +212 -0
  11. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/constructor.js +499 -0
  12. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/index.d.ts +1971 -0
  13. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/index.js +16 -0
  14. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/input.js +809 -0
  15. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/is.js +143 -0
  16. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/libvips.js +207 -0
  17. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/operation.js +1016 -0
  18. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/output.js +1666 -0
  19. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/resize.js +595 -0
  20. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/sharp.js +121 -0
  21. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/lib/utility.js +291 -0
  22. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/package.json +202 -0
  23. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/binding.gyp +298 -0
  24. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/common.cc +1130 -0
  25. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/common.h +402 -0
  26. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/metadata.cc +346 -0
  27. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/metadata.h +90 -0
  28. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/operations.cc +499 -0
  29. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/operations.h +137 -0
  30. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/pipeline.cc +1814 -0
  31. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/pipeline.h +408 -0
  32. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/sharp.cc +43 -0
  33. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/stats.cc +186 -0
  34. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/stats.h +62 -0
  35. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/utilities.cc +288 -0
  36. package/templates/default/apps/cms/node_modules/next/node_modules/sharp/src/utilities.h +22 -0
  37. package/templates/default/apps/cms/node_modules/sharp/LICENSE +191 -0
  38. package/templates/default/apps/cms/node_modules/sharp/README.md +118 -0
  39. package/templates/default/apps/cms/node_modules/sharp/install/check.js +41 -0
  40. package/templates/default/apps/cms/node_modules/sharp/lib/channel.js +174 -0
  41. package/templates/default/apps/cms/node_modules/sharp/lib/colour.js +180 -0
  42. package/templates/default/apps/cms/node_modules/sharp/lib/composite.js +210 -0
  43. package/templates/default/apps/cms/node_modules/sharp/lib/constructor.js +452 -0
  44. package/templates/default/apps/cms/node_modules/sharp/lib/index.d.ts +1754 -0
  45. package/templates/default/apps/cms/node_modules/sharp/lib/index.js +16 -0
  46. package/templates/default/apps/cms/node_modules/sharp/lib/input.js +658 -0
  47. package/templates/default/apps/cms/node_modules/sharp/lib/is.js +169 -0
  48. package/templates/default/apps/cms/node_modules/sharp/lib/libvips.js +203 -0
  49. package/templates/default/apps/cms/node_modules/sharp/lib/operation.js +958 -0
  50. package/templates/default/apps/cms/node_modules/sharp/lib/output.js +1587 -0
  51. package/templates/default/apps/cms/node_modules/sharp/lib/resize.js +587 -0
  52. package/templates/default/apps/cms/node_modules/sharp/lib/sharp.js +114 -0
  53. package/templates/default/apps/cms/node_modules/sharp/lib/utility.js +296 -0
  54. package/templates/default/apps/cms/node_modules/sharp/package.json +222 -0
  55. package/templates/default/apps/cms/node_modules/sharp/src/binding.gyp +280 -0
  56. package/templates/default/apps/cms/node_modules/sharp/src/common.cc +1091 -0
  57. package/templates/default/apps/cms/node_modules/sharp/src/common.h +393 -0
  58. package/templates/default/apps/cms/node_modules/sharp/src/metadata.cc +320 -0
  59. package/templates/default/apps/cms/node_modules/sharp/src/metadata.h +85 -0
  60. package/templates/default/apps/cms/node_modules/sharp/src/operations.cc +475 -0
  61. package/templates/default/apps/cms/node_modules/sharp/src/operations.h +125 -0
  62. package/templates/default/apps/cms/node_modules/sharp/src/pipeline.cc +1758 -0
  63. package/templates/default/apps/cms/node_modules/sharp/src/pipeline.h +393 -0
  64. package/templates/default/apps/cms/node_modules/sharp/src/sharp.cc +40 -0
  65. package/templates/default/apps/cms/node_modules/sharp/src/stats.cc +183 -0
  66. package/templates/default/apps/cms/node_modules/sharp/src/stats.h +59 -0
  67. package/templates/default/apps/cms/node_modules/sharp/src/utilities.cc +269 -0
  68. package/templates/default/apps/cms/node_modules/sharp/src/utilities.h +19 -0
  69. package/templates/default/components/AdminCard.tsx +1 -1
  70. package/templates/default/components/AdminsPage.tsx +1 -1
  71. package/templates/default/components/AdvancedSettingsPage.tsx +1 -1
  72. package/templates/default/components/AnalyticsPage.tsx +1 -1
  73. package/templates/default/components/BrowsePage.tsx +2 -2
  74. package/templates/default/components/CategorizedSectionPage.tsx +3 -3
  75. package/templates/default/components/CategoryDeleteConfirmPage.tsx +4 -4
  76. package/templates/default/components/CategorySectionSelectInput.tsx +1 -1
  77. package/templates/default/components/ContainerBox.tsx +1 -1
  78. package/templates/default/components/DashboardPage.tsx +1 -1
  79. package/templates/default/components/EmailCard.tsx +1 -1
  80. package/templates/default/components/EmailPasswordForm.tsx +2 -2
  81. package/templates/default/components/EmailQuotaForm.tsx +1 -1
  82. package/templates/default/components/EmailsPage.tsx +1 -1
  83. package/templates/default/components/GalleryPhoto.tsx +1 -1
  84. package/templates/default/components/ItemEditPage.tsx +2 -2
  85. package/templates/default/components/Layout.tsx +1 -1
  86. package/templates/default/components/LogPage.tsx +1 -1
  87. package/templates/default/components/Navbar.tsx +2 -2
  88. package/templates/default/components/NavbarAlt.tsx +6 -6
  89. package/templates/default/components/NewAdminForm.tsx +2 -2
  90. package/templates/default/components/NewEmailForm.tsx +3 -3
  91. package/templates/default/components/NewPage.tsx +2 -2
  92. package/templates/default/components/NewVariantComponent.tsx +1 -1
  93. package/templates/default/components/SectionItemCard.tsx +1 -1
  94. package/templates/default/components/SectionItemStatusBadge.tsx +1 -1
  95. package/templates/default/components/SectionPage.tsx +2 -2
  96. package/templates/default/components/SelectBox.tsx +2 -2
  97. package/templates/default/components/SettingsPage.tsx +1 -1
  98. package/templates/default/components/Sidebar.tsx +3 -3
  99. package/templates/default/components/VariantEditPage.tsx +2 -2
  100. package/templates/default/components/form/Form.tsx +1 -1
  101. package/templates/default/components/form/FormInputElement.tsx +1 -1
  102. package/templates/default/components/form/helpers/{_section-hot-reload.ts → _section-hot-reload.js} +1 -1
  103. package/templates/default/components/form/helpers/util.ts +1 -1
  104. package/templates/default/components/form/inputs/ColorFormInput.tsx +1 -1
  105. package/templates/default/components/form/inputs/DateFormInput.tsx +1 -1
  106. package/templates/default/components/form/inputs/DocumentFormInput.tsx +3 -3
  107. package/templates/default/components/form/inputs/NumberFormInput.tsx +1 -1
  108. package/templates/default/components/form/inputs/PasswordFormInput.tsx +1 -1
  109. package/templates/default/components/form/inputs/PhotoFormInput.tsx +4 -4
  110. package/templates/default/components/form/inputs/SelectFormInput.tsx +1 -1
  111. package/templates/default/components/form/inputs/TagsFormInput.tsx +1 -1
  112. package/templates/default/components/form/inputs/TextFormInput.tsx +1 -1
  113. package/templates/default/components/form/inputs/TextareaFormInput.tsx +1 -1
  114. package/templates/default/components/form/inputs/VideoFormInput.tsx +3 -3
  115. package/templates/default/components/ui/badge.tsx +6 -6
  116. package/templates/default/components/ui/button.tsx +5 -5
  117. package/templates/default/components/ui/card.tsx +1 -1
  118. package/templates/default/components/ui/checkbox.tsx +1 -1
  119. package/templates/default/components/ui/dropdown-menu.tsx +6 -6
  120. package/templates/default/components/ui/input.tsx +1 -1
  121. package/templates/default/components/ui/popover.tsx +1 -1
  122. package/templates/default/components/ui/scroll-area.tsx +2 -2
  123. package/templates/default/components/ui/select.tsx +4 -4
  124. package/templates/default/components/ui/sheet.tsx +1 -1
  125. package/templates/default/components/ui/switch.tsx +1 -1
  126. package/templates/default/components/ui/table.tsx +3 -3
  127. package/templates/default/components/ui/tabs.tsx +2 -2
  128. package/templates/default/components/ui/toast.tsx +4 -4
  129. package/templates/default/eslint.config.mjs +38 -0
  130. package/templates/default/next-env.d.ts +1 -1
  131. package/templates/default/package.json +24 -33
  132. package/templates/default/postcss.config.mjs +7 -0
  133. package/templates/default/{middleware.ts → proxy.ts} +2 -3
  134. package/templates/default/styles/globals.css +107 -4
  135. package/templates/default/tsconfig.json +45 -44
  136. package/templates/default/postcss.config.js +0 -6
  137. package/templates/default/tailwind.config.js +0 -95
@@ -0,0 +1,280 @@
1
+ # Copyright 2013 Lovell Fuller and others.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ {
5
+ 'variables': {
6
+ 'vips_version': '<!(node -p "require(\'../lib/libvips\').minimumLibvipsVersion")',
7
+ 'platform_and_arch': '<!(node -p "require(\'../lib/libvips\').buildPlatformArch()")',
8
+ 'sharp_libvips_version': '<!(node -p "require(\'../package.json\').optionalDependencies[\'@img/sharp-libvips-<(platform_and_arch)\']")',
9
+ 'sharp_libvips_yarn_locator': '<!(node -p "require(\'../lib/libvips\').yarnLocator()")',
10
+ 'sharp_libvips_include_dir': '<!(node -p "require(\'../lib/libvips\').buildSharpLibvipsIncludeDir()")',
11
+ 'sharp_libvips_cplusplus_dir': '<!(node -p "require(\'../lib/libvips\').buildSharpLibvipsCPlusPlusDir()")',
12
+ 'sharp_libvips_lib_dir': '<!(node -p "require(\'../lib/libvips\').buildSharpLibvipsLibDir()")'
13
+ },
14
+ 'targets': [{
15
+ 'target_name': 'libvips-cpp',
16
+ 'conditions': [
17
+ ['OS == "win"', {
18
+ # Build libvips C++ binding for Windows due to MSVC std library ABI changes
19
+ 'type': 'shared_library',
20
+ 'defines': [
21
+ 'VIPS_CPLUSPLUS_EXPORTS',
22
+ '_ALLOW_KEYWORD_MACROS'
23
+ ],
24
+ 'sources': [
25
+ '<(sharp_libvips_cplusplus_dir)/VConnection.cpp',
26
+ '<(sharp_libvips_cplusplus_dir)/VError.cpp',
27
+ '<(sharp_libvips_cplusplus_dir)/VImage.cpp',
28
+ '<(sharp_libvips_cplusplus_dir)/VInterpolate.cpp',
29
+ '<(sharp_libvips_cplusplus_dir)/VRegion.cpp'
30
+ ],
31
+ 'include_dirs': [
32
+ '<(sharp_libvips_include_dir)',
33
+ '<(sharp_libvips_include_dir)/glib-2.0',
34
+ '<(sharp_libvips_lib_dir)/glib-2.0/include'
35
+ ],
36
+ 'link_settings': {
37
+ 'library_dirs': [
38
+ '<(sharp_libvips_lib_dir)'
39
+ ],
40
+ 'libraries': [
41
+ 'libvips.lib'
42
+ ],
43
+ },
44
+ 'configurations': {
45
+ 'Release': {
46
+ 'msvs_settings': {
47
+ 'VCCLCompilerTool': {
48
+ 'ExceptionHandling': 1,
49
+ 'Optimization': 1,
50
+ 'WholeProgramOptimization': 'true'
51
+ },
52
+ 'VCLibrarianTool': {
53
+ 'AdditionalOptions': [
54
+ '/LTCG:INCREMENTAL'
55
+ ]
56
+ },
57
+ 'VCLinkerTool': {
58
+ 'ImageHasSafeExceptionHandlers': 'false',
59
+ 'OptimizeReferences': 2,
60
+ 'EnableCOMDATFolding': 2,
61
+ 'LinkIncremental': 1,
62
+ 'AdditionalOptions': [
63
+ '/LTCG:INCREMENTAL'
64
+ ]
65
+ }
66
+ },
67
+ 'msvs_disabled_warnings': [
68
+ 4275
69
+ ]
70
+ }
71
+ }
72
+ }, {
73
+ # Ignore this target for non-Windows
74
+ 'type': 'none'
75
+ }]
76
+ ]
77
+ }, {
78
+ 'target_name': 'sharp-<(platform_and_arch)',
79
+ 'defines': [
80
+ 'NAPI_VERSION=9',
81
+ 'NODE_ADDON_API_DISABLE_DEPRECATED',
82
+ 'NODE_API_SWALLOW_UNTHROWABLE_EXCEPTIONS'
83
+ ],
84
+ 'dependencies': [
85
+ '<!(node -p "require(\'node-addon-api\').gyp")',
86
+ 'libvips-cpp'
87
+ ],
88
+ 'variables': {
89
+ 'conditions': [
90
+ ['OS != "win"', {
91
+ 'pkg_config_path': '<!(node -p "require(\'../lib/libvips\').pkgConfigPath()")',
92
+ 'use_global_libvips': '<!(node -p "Boolean(require(\'../lib/libvips\').useGlobalLibvips()).toString()")'
93
+ }, {
94
+ 'pkg_config_path': '',
95
+ 'use_global_libvips': ''
96
+ }]
97
+ ]
98
+ },
99
+ 'sources': [
100
+ 'common.cc',
101
+ 'metadata.cc',
102
+ 'stats.cc',
103
+ 'operations.cc',
104
+ 'pipeline.cc',
105
+ 'utilities.cc',
106
+ 'sharp.cc'
107
+ ],
108
+ 'include_dirs': [
109
+ '<!(node -p "require(\'node-addon-api\').include_dir")',
110
+ ],
111
+ 'conditions': [
112
+ ['use_global_libvips == "true"', {
113
+ # Use pkg-config for include and lib
114
+ 'include_dirs': ['<!@(PKG_CONFIG_PATH="<(pkg_config_path)" pkg-config --cflags-only-I vips-cpp vips glib-2.0 | sed s\/-I//g)'],
115
+ 'libraries': ['<!@(PKG_CONFIG_PATH="<(pkg_config_path)" pkg-config --libs vips-cpp)'],
116
+ 'defines': [
117
+ 'SHARP_USE_GLOBAL_LIBVIPS'
118
+ ],
119
+ 'conditions': [
120
+ ['OS == "linux"', {
121
+ 'defines': [
122
+ # Inspect libvips-cpp.so to determine which C++11 ABI version was used and set _GLIBCXX_USE_CXX11_ABI accordingly. This is quite horrible.
123
+ '_GLIBCXX_USE_CXX11_ABI=<!(if readelf -Ws "$(PKG_CONFIG_PATH="<(pkg_config_path)" pkg-config --variable libdir vips-cpp)/libvips-cpp.so" | c++filt | grep -qF __cxx11;then echo "1";else echo "0";fi)'
124
+ ]
125
+ }]
126
+ ]
127
+ }, {
128
+ # Use pre-built libvips stored locally within node_modules
129
+ 'include_dirs': [
130
+ '<(sharp_libvips_include_dir)',
131
+ '<(sharp_libvips_include_dir)/glib-2.0',
132
+ '<(sharp_libvips_lib_dir)/glib-2.0/include'
133
+ ],
134
+ 'library_dirs': [
135
+ '<(sharp_libvips_lib_dir)'
136
+ ],
137
+ 'conditions': [
138
+ ['OS == "win"', {
139
+ 'defines': [
140
+ '_ALLOW_KEYWORD_MACROS',
141
+ '_FILE_OFFSET_BITS=64'
142
+ ],
143
+ 'link_settings': {
144
+ 'libraries': [
145
+ 'libvips.lib'
146
+ ]
147
+ }
148
+ }],
149
+ ['OS == "mac"', {
150
+ 'link_settings': {
151
+ 'libraries': [
152
+ 'libvips-cpp.42.dylib'
153
+ ]
154
+ },
155
+ 'xcode_settings': {
156
+ 'OTHER_LDFLAGS': [
157
+ # Ensure runtime linking is relative to sharp.node
158
+ '-Wl,-rpath,\'@loader_path/../../sharp-libvips-<(platform_and_arch)/lib\'',
159
+ '-Wl,-rpath,\'@loader_path/../../../sharp-libvips-<(platform_and_arch)/<(sharp_libvips_version)/lib\'',
160
+ '-Wl,-rpath,\'@loader_path/../../node_modules/@img/sharp-libvips-<(platform_and_arch)/lib\'',
161
+ '-Wl,-rpath,\'@loader_path/../../../node_modules/@img/sharp-libvips-<(platform_and_arch)/lib\'',
162
+ '-Wl,-rpath,\'@loader_path/../../../../../@img-sharp-libvips-<(platform_and_arch)-npm-<(sharp_libvips_version)-<(sharp_libvips_yarn_locator)/node_modules/@img/sharp-libvips-<(platform_and_arch)/lib\''
163
+ ]
164
+ }
165
+ }],
166
+ ['OS == "linux"', {
167
+ 'defines': [
168
+ '_GLIBCXX_USE_CXX11_ABI=1'
169
+ ],
170
+ 'link_settings': {
171
+ 'libraries': [
172
+ '-l:libvips-cpp.so.42'
173
+ ],
174
+ 'ldflags': [
175
+ '-Wl,-s',
176
+ '-Wl,--disable-new-dtags',
177
+ '-Wl,-z,nodelete',
178
+ '-Wl,-rpath=\'$$ORIGIN/../../sharp-libvips-<(platform_and_arch)/lib\'',
179
+ '-Wl,-rpath=\'$$ORIGIN/../../../sharp-libvips-<(platform_and_arch)/<(sharp_libvips_version)/lib\'',
180
+ '-Wl,-rpath=\'$$ORIGIN/../../node_modules/@img/sharp-libvips-<(platform_and_arch)/lib\'',
181
+ '-Wl,-rpath=\'$$ORIGIN/../../../node_modules/@img/sharp-libvips-<(platform_and_arch)/lib\'',
182
+ '-Wl,-rpath,\'$$ORIGIN/../../../../../@img-sharp-libvips-<(platform_and_arch)-npm-<(sharp_libvips_version)-<(sharp_libvips_yarn_locator)/node_modules/@img/sharp-libvips-<(platform_and_arch)/lib\''
183
+ ]
184
+ }
185
+ }],
186
+ ['OS == "emscripten"', {
187
+ 'product_extension': 'node.js',
188
+ 'link_settings': {
189
+ 'ldflags': [
190
+ '-fexceptions',
191
+ '--pre-js=<!(node -p "require.resolve(\'./emscripten/pre.js\')")',
192
+ '-Oz',
193
+ '-sALLOW_MEMORY_GROWTH',
194
+ '-sENVIRONMENT=node',
195
+ '-sEXPORTED_FUNCTIONS=["emnapiInit", "_vips_shutdown", "_uv_library_shutdown"]',
196
+ '-sNODERAWFS',
197
+ '-sTEXTDECODER=0',
198
+ '-sWASM_ASYNC_COMPILATION=0',
199
+ '-sWASM_BIGINT'
200
+ ],
201
+ 'libraries': [
202
+ '<!@(PKG_CONFIG_PATH="<!(node -p "require(\'@img/sharp-libvips-dev-wasm32/lib\')")/pkgconfig" pkg-config --static --libs vips-cpp)'
203
+ ],
204
+ }
205
+ }]
206
+ ]
207
+ }]
208
+ ],
209
+ 'cflags_cc': [
210
+ '-std=c++0x',
211
+ '-fexceptions',
212
+ '-Wall',
213
+ '-Os'
214
+ ],
215
+ 'xcode_settings': {
216
+ 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
217
+ 'MACOSX_DEPLOYMENT_TARGET': '10.13',
218
+ 'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
219
+ 'GCC_ENABLE_CPP_RTTI': 'YES',
220
+ 'OTHER_CPLUSPLUSFLAGS': [
221
+ '-fexceptions',
222
+ '-Wall',
223
+ '-Oz'
224
+ ]
225
+ },
226
+ 'configurations': {
227
+ 'Release': {
228
+ 'conditions': [
229
+ ['target_arch == "arm"', {
230
+ 'cflags_cc': [
231
+ '-Wno-psabi'
232
+ ]
233
+ }],
234
+ ['OS == "win"', {
235
+ 'msvs_settings': {
236
+ 'VCCLCompilerTool': {
237
+ 'ExceptionHandling': 1,
238
+ 'Optimization': 1,
239
+ 'WholeProgramOptimization': 'true'
240
+ },
241
+ 'VCLibrarianTool': {
242
+ 'AdditionalOptions': [
243
+ '/LTCG:INCREMENTAL'
244
+ ]
245
+ },
246
+ 'VCLinkerTool': {
247
+ 'ImageHasSafeExceptionHandlers': 'false',
248
+ 'OptimizeReferences': 2,
249
+ 'EnableCOMDATFolding': 2,
250
+ 'LinkIncremental': 1,
251
+ 'AdditionalOptions': [
252
+ '/LTCG:INCREMENTAL'
253
+ ]
254
+ }
255
+ },
256
+ 'msvs_disabled_warnings': [
257
+ 4275
258
+ ]
259
+ }]
260
+ ]
261
+ }
262
+ },
263
+ }, {
264
+ 'target_name': 'copy-dll',
265
+ 'type': 'none',
266
+ 'dependencies': [
267
+ 'sharp-<(platform_and_arch)'
268
+ ],
269
+ 'conditions': [
270
+ ['OS == "win"', {
271
+ 'copies': [{
272
+ 'destination': 'build/Release',
273
+ 'files': [
274
+ '<(sharp_libvips_lib_dir)/libvips-42.dll'
275
+ ]
276
+ }]
277
+ }]
278
+ ]
279
+ }]
280
+ }