@zeedhi/teknisa-cli 1.93.2 → 1.94.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/teknisa-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.94.1",
|
|
4
4
|
"description": "Teknisa CLI",
|
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"/src",
|
|
35
35
|
"/bin"
|
|
36
36
|
],
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "238b7c03f53cd4008cbf07c6c49ad793284565d6"
|
|
38
38
|
}
|
|
@@ -2,7 +2,11 @@ import Vue from 'vue';
|
|
|
2
2
|
import App from './App.vue';
|
|
3
3
|
import { vuetify } from './plugins';
|
|
4
4
|
import './registerServiceWorker';
|
|
5
|
-
import 'roboto-fontface/css/roboto/roboto-fontface.
|
|
5
|
+
import 'roboto-fontface/css/roboto/sass/roboto-fontface-medium.scss';
|
|
6
|
+
import 'roboto-fontface/css/roboto/sass/roboto-fontface-regular.scss';
|
|
7
|
+
import 'roboto-fontface/css/roboto/sass/roboto-fontface-bold.scss';
|
|
8
|
+
import 'roboto-fontface/css/roboto/sass/roboto-fontface-regular-italic.scss';
|
|
9
|
+
import 'roboto-fontface/css/roboto/sass/roboto-fontface-bold-italic.scss';
|
|
6
10
|
import './styles/style.scss';
|
|
7
11
|
|
|
8
12
|
Vue.config.productionTip = false;
|
|
@@ -8,6 +8,30 @@ module.exports = {
|
|
|
8
8
|
},
|
|
9
9
|
chainWebpack: (config) => {
|
|
10
10
|
config.resolve.symlinks(false);
|
|
11
|
+
|
|
12
|
+
config.plugin('html').tap(args => {
|
|
13
|
+
args[0].chunksSortMode = (chunk1, chunk2) => {
|
|
14
|
+
const chunksOrder = {
|
|
15
|
+
'assets/css/src.components': 1,
|
|
16
|
+
'assets/css/app': 2,
|
|
17
|
+
'assets/css/styles': 3,
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
const getChunkOrder = (chunkName) => {
|
|
21
|
+
let order = 0;
|
|
22
|
+
Object.keys(chunksOrder).forEach(key => {
|
|
23
|
+
if (chunkName.indexOf(key) === 0) {
|
|
24
|
+
order = chunksOrder[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
return order;
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
return getChunkOrder(chunk1.files[0]) - getChunkOrder(chunk2.files[0]);
|
|
31
|
+
};
|
|
32
|
+
return args;
|
|
33
|
+
});
|
|
34
|
+
|
|
11
35
|
/*remove hash from images*/
|
|
12
36
|
config.module
|
|
13
37
|
.rule('images')
|
|
@@ -5,7 +5,11 @@ import { vuetify } from './plugins';
|
|
|
5
5
|
import store from './store';
|
|
6
6
|
import './components';
|
|
7
7
|
import './registerServiceWorker';
|
|
8
|
-
import 'roboto-fontface/css/roboto/roboto-fontface.
|
|
8
|
+
import 'roboto-fontface/css/roboto/sass/roboto-fontface-medium.scss';
|
|
9
|
+
import 'roboto-fontface/css/roboto/sass/roboto-fontface-regular.scss';
|
|
10
|
+
import 'roboto-fontface/css/roboto/sass/roboto-fontface-bold.scss';
|
|
11
|
+
import 'roboto-fontface/css/roboto/sass/roboto-fontface-regular-italic.scss';
|
|
12
|
+
import 'roboto-fontface/css/roboto/sass/roboto-fontface-bold-italic.scss';
|
|
9
13
|
import './styles/style.scss';
|
|
10
14
|
|
|
11
15
|
Vue.config.productionTip = false;
|
|
@@ -8,6 +8,30 @@ module.exports = {
|
|
|
8
8
|
},
|
|
9
9
|
chainWebpack: (config) => {
|
|
10
10
|
config.resolve.symlinks(false);
|
|
11
|
+
|
|
12
|
+
config.plugin('html').tap(args => {
|
|
13
|
+
args[0].chunksSortMode = (chunk1, chunk2) => {
|
|
14
|
+
const chunksOrder = {
|
|
15
|
+
'assets/css/src.components': 1,
|
|
16
|
+
'assets/css/app': 2,
|
|
17
|
+
'assets/css/styles': 3,
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
const getChunkOrder = (chunkName) => {
|
|
21
|
+
let order = 0;
|
|
22
|
+
Object.keys(chunksOrder).forEach(key => {
|
|
23
|
+
if (chunkName.indexOf(key) === 0) {
|
|
24
|
+
order = chunksOrder[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
return order;
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
return getChunkOrder(chunk1.files[0]) - getChunkOrder(chunk2.files[0]);
|
|
31
|
+
};
|
|
32
|
+
return args;
|
|
33
|
+
});
|
|
34
|
+
|
|
11
35
|
/*remove hash from images*/
|
|
12
36
|
config.module
|
|
13
37
|
.rule('images')
|