Skip to content

Commit 24c4874

Browse files
author
pipeline
committed
v30.1.37 is released
1 parent fe7d823 commit 24c4874

File tree

377 files changed

+45330
-3370
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

377 files changed

+45330
-3370
lines changed

gulpfile.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,10 @@ gulp.task('build', function(done) {
189189
});
190190

191191
gulp.task('src-ship', function (done) {
192-
shelljs.cp('-rf', ['./public', './**.config.js', './Syncfusion_License.js', './**.json', './newWindowSamples/*', './src', './samples', './manifest.Webmanifest', './**.xml'], './dist/');
192+
if (!fs.existsSync('./dist/')) {
193+
fs.mkdirSync('./dist/', { recursive: true });
194+
}
195+
shelljs.cp('-rf', ...['./public', './**.config.js', './Syncfusion_License.js', './**.json', './newWindowSamples/*', './src', './samples', './manifest.Webmanifest', './**.xml'], './dist/');
193196
done();
194197
});
195198

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ej2-vue-samples",
3-
"version": "29.1.33",
3+
"version": "30.1.37",
44
"description": "Examples of Vue UI Components",
55
"keywords": [],
66
"dependencies": {
@@ -42,6 +42,7 @@
4242
"@syncfusion/ej2-vue-image-editor": "*",
4343
"@syncfusion/ej2-vue-multicolumn-combobox": "*",
4444
"@syncfusion/ej2-vue-interactive-chat": "*",
45+
"@syncfusion/ej2-vue-blockeditor": "*",
4546
"@xenova/transformers": "^2.17.2",
4647
"form-data": "^4.0.0",
4748
"openai": "^4.57.3",

public/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
<title>Demos, Examples of Syncfusion Vue UI Components</title>
1919
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2020
<meta name="description" content="Explore and learn Syncfusion Vue UI components library using large collection of feature-wise examples for each components.">
21-
<meta http-equiv="X-Frame-Options" content="SAMEORIGIN">
2221
<meta name="author" content="Syncfusion" />
2322
<link rel="shortcut icon" href="favicon.ico" />
2423
<link rel="manifest" href="./manifest.webmanifest">

0 commit comments

Comments
 (0)