Skip to content

Commit bf59df5

Browse files
committedJan 14, 2025
up
1 parent 45190dd commit bf59df5

File tree

56 files changed

+522735
-31
lines changed

Some content is hidden

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

56 files changed

+522735
-31
lines changed
 

‎copy.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
var fs = require("fs-extra");
33
const path = require('path');
44

5-
var source = 'github-9jygxhve-agbrjju6/angular.json'
5+
var source = 'github-9jygxhve-agbrjju6/jqx.gantt.css'
66
var source2 = 'github-9jygxhve-agbrjju6/src/assets/styles.css'
77

88
const dir = path.join(path.resolve(__dirname));
@@ -16,9 +16,10 @@ fs.readdirSync(dir).forEach((file, index) => {
1616
fs.readdirSync(subDir).forEach((demo, index) => {
1717
if (demo.toLowerCase().indexOf('readme') === -1 && demo.toLowerCase().indexOf('node_modules') === -1 && demo.toLowerCase().indexOf('package') === -1) {
1818
const newPath = path.join(path.resolve(subDir, demo));
19-
20-
// console.log(newPath);
21-
fs.copySync(source, newPath + '/angular.json');
19+
if (newPath.indexOf('gantt') >= 0) {
20+
console.log(newPath);
21+
fs.copySync(source, newPath + '/src/assets/jqx.gantt.css');
22+
}
2223
}
2324
});
2425
}

‎gantt/defaultfunctionality/angular.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
"./node_modules/jqwidgets-ng/jqwidgets/styles/jqx.base.css",
3737
"./node_modules/jqwidgets-ng/jqwidgets/styles/jqx.fluent.css",
3838
"src/assets/fonts.css",
39-
"src/assets/styles.css"
39+
"src/assets/styles.css",
40+
"src/assets/jqx.gantt.css",
4041
],
4142
"tsConfig": "src/tsconfig.app.json"
4243
}

0 commit comments

Comments
 (0)