Skip to content

Commit b5f8d46

Browse files
author
pipeline
committed
v19.1.63 is released
1 parent db9d49d commit b5f8d46

File tree

10 files changed

+330
-233
lines changed

10 files changed

+330
-233
lines changed

README.md

Lines changed: 103 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,29 +34,126 @@ Under no circumstances can you use this product without (1) either a Community L
3434
The Syncfusion license that contains the terms and conditions can be found at
3535
[https://www.syncfusion.com/content/downloads/syncfusion_license.pdf](https://www.syncfusion.com/content/downloads/syncfusion_license.pdf)
3636

37-
## Using the samples
37+
# Using the samples
3838

39-
### Installing
39+
## Installing
4040

41-
To install all dependent packages, use the below command
41+
Before installation check `@syncfusion:registry=http://nexus.syncfusion.com/repository/ej2-production/` is available in npmrc file. Then use the below command to install all dependent packages.
4242

4343
```bash
4444
npm install
4545
```
4646

47-
### Building
47+
## Building
4848

4949
To compile the source files, use the below command
5050

5151
```bash
5252
npm run build
5353
```
5454

55-
### Serving deployed build
55+
It calls the following tasks synchronously,
56+
57+
1. Build
58+
2. Site-map generate
59+
3. Source-ship
60+
61+
### **Build**
62+
63+
Use the below command to run this task and it calls the following tasks synchronously.
64+
65+
1. Generate routes
66+
2. Style ship
67+
3. Copy source
68+
4. build
69+
70+
### Generate routes
71+
72+
Use the below command to generate `router.config.ts` file and it contains routing path for all samples.
73+
74+
```
75+
gulp generate-routes
76+
```
77+
78+
### Style ship
79+
80+
It copies css files for themes from node_modules. Use the below command to run it individual.
81+
82+
```
83+
gulp styles-ship
84+
```
85+
86+
### Copy source
87+
88+
It select all files in `src/` except `src/common` and stored it in `public/src` folder. The below command is used to run this task.
89+
90+
```
91+
gulp copy-source
92+
```
93+
94+
### build
95+
96+
Use the below command to generate scripts, styles, locale and sample lists.
97+
98+
```
99+
gulp build
100+
```
101+
It runs the following tasks syncronously,
102+
103+
1. Scripts
104+
2. Styles
105+
106+
#### **Scripts**
107+
108+
It compiles the Typescript files and use the below command to run this task.
109+
110+
```
111+
gulp scripts
112+
```
113+
114+
#### **Styles**
115+
116+
`gulp styles` command is used to compile default themes. It calls the following two tasks synchronously.
117+
118+
1. Default theme
119+
2. Compile styles
120+
121+
#### Default theme
122+
123+
Use the below command to generate default theme files.
124+
125+
```
126+
gulp default-theme
127+
```
128+
129+
#### Compile Styles
130+
It compiles the scss file to css file. To run this task use the below command,
131+
132+
```
133+
gulp compile-styles
134+
```
135+
136+
### Site map generation
137+
138+
The below command combines sample of all components and store it in sitemap-demos.xml file to index our components, samples, documents in search engine.
139+
140+
```
141+
gulp sitemap-generate
142+
```
143+
144+
### Source-ship
145+
146+
It copies all files in the repository and paste it in `dist/` folder. To run this task use the below command,
147+
148+
```
149+
gulp source-ship
150+
```
151+
152+
## Serving deployed build
56153

57154
https://cli.vuejs.org/guide/deployment.html
58155

59-
## Components Catalog
156+
# Components Catalog
60157

61158
<table>
62159
<tr>

newWindowSamples/avatar/vendors.bundle.js

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

newWindowSamples/badge/vendors.bundle.js

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

newWindowSamples/card/vendors.bundle.js

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

newWindowSamples/dashboard-layout/vendors.bundle.js

Lines changed: 33 additions & 33 deletions
Large diffs are not rendered by default.

newWindowSamples/progress-bar/vendors.bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

newWindowSamples/rich-text-editor/vendors.bundle.js

Lines changed: 61 additions & 61 deletions
Large diffs are not rendered by default.

newWindowSamples/splitter/vendors.bundle.js

Lines changed: 78 additions & 78 deletions
Large diffs are not rendered by default.

newWindowSamples/toast/vendors.bundle.js

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ej2-vue-samples",
3-
"version": "19.1.54",
3+
"version": "19.1.63",
44
"description": "Examples of Vue UI Components",
55
"keywords": [],
66
"dependencies": {

0 commit comments

Comments
 (0)