Skip to content

Commit 64ebfac

Browse files
committed
Documentation(1023562): Update Package
1 parent 507564e commit 64ebfac

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
99
<title>Essential JS 2 for React - Feature Rich DataGrid</title>
1010
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
11-
<link href="https://cdn.syncfusion.com/ej2/29.1.33/material3.css" class="theme-primary" rel="stylesheet">
11+
<link href="https://cdn.syncfusion.com/ej2/33.2.3/material3.css" class="theme-primary" rel="stylesheet">
1212
<link href="https://ej2.syncfusion.com/demos/src/grid/images/Grid/style.css" rel="stylesheet" type="text/css"/>
1313
<link rel="stylesheet" href="https://cdn.syncfusion.com/content/images/common/menu/master/icons/menufontV2.css?v1">
1414
<link rel="stylesheet" href="https://cdn.syncfusion.com/content/stylesheets/components/bootstrap/BootstrapLayoutv132.min.css">

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@
1414
"@types/react-dom": "^18.2.6",
1515
"@types/react-router-dom": "^5.3.3",
1616
"css-loader": "^6.8.1",
17+
"glob": "^13.0.6",
1718
"html-webpack-plugin": "^5.5.3",
1819
"mini-css-extract-plugin": "^2.7.6",
1920
"terser-webpack-plugin": "^5.3.9",
2021
"ts-loader": "^9.4.4",
2122
"typescript": "^5.1.6",
2223
"webpack": "^5.88.1",
2324
"webpack-cli": "^5.1.4",
24-
"webpack-dev-server": "^4.15.1"
25+
"webpack-dev-server": "5.2.1"
2526
},
2627
"dependencies": {
2728
"@syncfusion/ej2-react-buttons": "*",

webpack.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
var glob = require("glob");
21
const HtmlWebpackPlugin = require("html-webpack-plugin");
32
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
43
const TerserPlugin = require("terser-webpack-plugin");
54
const path = require("path");
65

76
module.exports = {
87
entry: {
9-
index: glob.sync("./src/**/**/*.tsx")
8+
index: "./src/common/index.tsx"
109
},
1110
target: "web",
1211
module: {

0 commit comments

Comments
 (0)