@globules-io/ogx.js 1.24.4 → 1.24.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/install.js +0 -4
- package/package.json +1 -1
- package/www/js/lib/globules/ogx.dev.min.js +2 -2
- package/www/js/lib/globules/ogx.min.js +2 -2
package/README.md
CHANGED
|
@@ -6,7 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
### [See it](https://globules.io/framework) in action
|
|
8
8
|
|
|
9
|
-
### Check out
|
|
9
|
+
### Check out the [code](https://github.com/globules-io/OGX.Demo) of the demo
|
|
10
|
+
|
|
11
|
+
### Check out the [code](https://github.com/globules-io/OGX.NeutralinoDemo) of the NeutralinoJS demo
|
|
10
12
|
|
|
11
13
|
### Check out the [wiki](https://github.com/globules-io/OGX.JS/wiki)
|
|
12
14
|
|
package/install.js
CHANGED
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
const path = require('path');
|
|
2
2
|
const fs = require('fs-extra');
|
|
3
3
|
const copy = require('recursive-copy');
|
|
4
|
-
const src_ogx = path.normalize(__dirname+'/ogx');
|
|
5
4
|
const src_www = path.normalize(__dirname+'/www');
|
|
6
5
|
const src_themes = path.normalize(__dirname+'/www/themes');
|
|
7
6
|
const src_bin = path.normalize(__dirname+'/www/js/bin');
|
|
8
7
|
const src_lib = path.normalize(__dirname+'/www/js/lib');
|
|
9
8
|
const dest_www = path.normalize(__dirname+'./../../../www');
|
|
10
9
|
const dest_themes = path.normalize(__dirname+'./../../../www/themes');
|
|
11
|
-
const dest_ogx = path.normalize(__dirname+'./../../../ogx');
|
|
12
10
|
const dest_lib = path.normalize(__dirname+'./../../js/lib');
|
|
13
11
|
const dest_bin = path.normalize(__dirname+'./../../js/bin');
|
|
14
|
-
//copy ogx folder
|
|
15
|
-
copy(src_ogx, dest_ogx, {overwrite:true});
|
|
16
12
|
//if no www, copy the whole folder
|
|
17
13
|
if(!fs.existsSync(dest_www)){
|
|
18
14
|
copy(src_www, dest_www);
|