vanilla-jet 1.0.34 → 1.0.35
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/.grunt/build_styles_task.js +2 -2
- package/README.md +3 -3
- package/package.json +1 -1
|
@@ -14,8 +14,8 @@ module.exports = function(grunt) {
|
|
|
14
14
|
// -- Content
|
|
15
15
|
let adminContent = grunt.file.read(`${getCleanedCWD()}/assets/styles/less/admin.less`);
|
|
16
16
|
let sectionFiles = grunt.file.expand([
|
|
17
|
-
`${getCleanedCWD()}/assets/styles/less/sections/**/*.
|
|
18
|
-
`${getCleanedCWD()}/assets/styles/less/sections/*.
|
|
17
|
+
`${getCleanedCWD()}/assets/styles/less/sections/**/*.section.less`,
|
|
18
|
+
`${getCleanedCWD()}/assets/styles/less/sections/*.section.less`
|
|
19
19
|
]);
|
|
20
20
|
|
|
21
21
|
let combinedContent = adminContent + '\n';
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="https://github.com/nalancer08/App-Builders/blob/master/Logos/
|
|
2
|
+
<img src="https://github.com/nalancer08/App-Builders/blob/master/Logos/logo_monocromatico_horizontal_.png">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
|
-
#
|
|
6
|
-
NodeJS framework to
|
|
5
|
+
# VanillaJet
|
|
6
|
+
NodeJS framework to create apps with jQuery or VueJS over a SPA (Single Page Application), the framework helps to create the server and add dependencia, includes router and server side functions as routes (internal API).
|