Toggle navigation
P3X GitList Snapshot
GitHub
Repo
Changelog
To do
Releases
Themes
Change log
Loading change log ...
To do ...
Loading todo ...
browsing:
96ce918adf6e9b0edbd53697d068805ef357a89a
Branches
master
Tags
v2024.4.105
v2023.10.119
v2023.10.102
v2022.4.106
v2021.10.211
v2021.10.198
v2021.10.197
v2021.10.195
v2021.10.194
v2021.10.191
v2021.10.189
v2021.10.183
v2021.10.161
v2021.10.152
v2021.10.146
v2021.10.143
v2021.4.102
v2020.10.189
v2020.10.187
v2020.10.185
v2020.10.182
v2020.10.170
v2020.10.138
v2020.10.136
v2020.10.104
v2020.10.102
v2020.4.218
v2020.4.210
v2020.4.188
v2020.4.185
v2020.4.146
v2020.4.144
v2020.4.126
v2020.4.125
v2020.4.123
v2020.4.117
v2020.4.116
v2020.4.114
v2020.4.111
v2020.4.107
v2020.4.105
v2020.4.103
v2019.10.154
v2019.10.146
v2019.10.114
v2019.10.111
v2019.10.109
v2019.4.128
v2019.4.124
v2019.4.121
v2019.4.119
v2019.4.116
v2019.4.113
v2019.4.108
v2019.4.107
v2019.4.106
v2019.4.104
v2019.4.102
v2019.4.22
v2019.4.21
v2019.4.19
v2019.4.16
v2019.2.9-0
v2019.1.23-7
v2019.1.23-0
v2019.1.19-3
v2019.1.1-16
v2019.1.1-15
v2019.1.1-13
v2019.1.1-11
v2019.1.1-6
v2014.4.16
v2014.4.14
v1.1.18-573
p3x-gitlist-2.8.25-822
2019.4.8
2019.1.15-0
2019.1.12-3
2019.1.12-1
2019.1.10-5
2019.1.1-2
2018.12.31-3
2018.12.30-1
2018.12.22-6
2018.12.21-8
2018.12.21-7
2018.12.21-2
2018.12.14-3
2018.12.14-1
2018.12.14-0
2018.12.13-4
2018.12.13-3
2018.12.13-1
2018.12.13-0
2018.11.24-2
2018.11.19-0
2018.11.15-3
2018.11.15-1
2018.10.8-1
2018.9.20-0
2.12.10-1046
2.12.6-1040
2.12.4-1038
2.11.14-1031
2.10.83-1014
2.9.13-892
2.9.8-888
2.9.6-887
2.9.4-886
2.9.2-883
2.9.1-882
2.8.56-862
2.8.52-855
2.8.48-849
2.8.27-829
2.8.23-822
2.8.7-806
2.8.2-803
2.8.0
2.7.78-794
2.7.19-757
2.7.17-754
2.7.12-750
2.7.8-749
2.7.5-743
2.7.4-742
2.6.2-721
2.5.22-696
2.5.19-684
2.5.7-668
2.1.7-643
2.0.38-619
2.0.37-616
2.0.35-613
2.0.33-609
2.0.31-604
2.0.27-600
2.0.26-598
2.0.25-598
2.0.17-593
2.0.15-589
2.0.12-585
2.0.4-579
1.1.14
1.1.13
1.1.12
1.1.11
1.1.10
1.1.9
1.1.8
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.4-rc.3
1.0.4-rc.2
1.0.4-rc.1
1.0.3
1.0.2
1.0.1
1.0.0
0.5.6
0.5.5
0.5.4
0.5.0
0.4.0
0.3
0.2
0.1
Files
Commits
Log
Graph
Stats
gitlist.git
Gruntfile.js
RSS
Git
Fetch origin
Download
ZIP
TAR
Clone
Raw
View
History
Clone
SSH
HTTPS
Blames found: 65
Mode: javascript
Binary: false
Hang on, we reloading big blames...
f77129c5
const fs = require('fs'); const fsExtra = require('fs-extra');
f1e4d5b9
module.exports = function (grunt) {
8748c6bb
const themeDir = './public/less/theme';
f1e4d5b9
const filesLess = { }
eab1bbcf
f77129c5
const root = './node_modules/bootswatch'; const watches = fs.readdirSync(root); const themes = ['default']; const excluded = ['fonts']; const themeCss = {
8748c6bb
'bootstrap-default': '/css/bootstrap-default.css',
f77129c5
}
f1e4d5b9
f77129c5
for(let path of watches) { const stat = fs.statSync(`${root}/${path}`); if (stat.isDirectory() && !excluded.includes(path)) { themes.push(path);
8748c6bb
themeCss[`bootstrap-${path}`] = `/css/bootstrap-${path}.css`;
f1e4d5b9
}
f77129c5
} fsExtra.ensureDirSync(themeDir);
f1e4d5b9
f77129c5
for(let theme of themes) { const less = `${themeDir}/${theme}.less`;
f1e4d5b9
f77129c5
if (theme === 'default') { fs.writeFileSync(less, `
45980021
@import "../../../node_modules/bootstrap/less/bootstrap";
f77129c5
@import "../default"; `)
f1e4d5b9
f77129c5
} else { fs.writeFileSync(less, `
45980021
@import "../../../node_modules/bootstrap/less/bootstrap"; @import "../../../node_modules/bootswatch/${theme}/variables"; @import "../../../node_modules/bootswatch/${theme}/bootswatch";
f1e4d5b9
@import "../default"; `)
f77129c5
} // console.log(less)
8748c6bb
filesLess[`public/css/bootstrap-${theme}.css`] = less;
f77129c5
}
8748c6bb
fs.writeFileSync(`./public/js/themes.js`, `
45980021
module.exports = ${JSON.stringify(themeCss, null, 4)}
f1e4d5b9
`);
f77129c5
// grunt.log.writeln(JSON.stringify(filesLess, null, 2))
f1e4d5b9
grunt.loadNpmTasks('grunt-contrib-less');
6722fb20
f1e4d5b9
dd6b4dea
const builder = require(`corifeus-builder`); const loader = new builder.loader(grunt); loader.js({ replacer: { type: 'p3x', npmio: false,
f1e4d5b9
},
dd6b4dea
config: { clean: {
f77129c5
/*
dd6b4dea
themes: [ themeDir ], fonts: [
8748c6bb
'public/fonts'
dd6b4dea
]
f77129c5
*/
dd6b4dea
}, copy: {
6722fb20
tweomji: { files: [ { cwd: 'node_modules/twemoji/2/svg', expand: true, src: [ '**', ],
8748c6bb
dest: './public/webpack/assets/twemoji/svg'
6722fb20
}, ]
dd6b4dea
}, }, less: { development: {
6722fb20
options: { compress: true, },
dd6b4dea
files: filesLess },
f1e4d5b9
dd6b4dea
},
f1e4d5b9
dd6b4dea
watch: {
6722fb20
less: {
f7efadc5
files: ['public/less/*.*'],
dd6b4dea
tasks: ['less'], options: {
f77129c5
atBegin: true,
6722fb20
//spawn: false,
dd6b4dea
}, }, } } });
f1e4d5b9
457f0624
grunt.registerTask('default', ['clean','less', 'copy', 'cory-npm', 'cory-replace']);
f77129c5
grunt.registerTask('build', ['default']);
6722fb20
grunt.registerTask('run', ['watch:less']);
f1e4d5b9
f77129c5
};
f1e4d5b9