vanilla-jet 1.0.34 → 1.0.36

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.
@@ -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/**/*.sectionn.less`,
18
- `${getCleanedCWD()}/assets/styles/less/sections/*.sectionn.less`
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';
@@ -11,9 +11,8 @@ let Config = require(processCwd() + '/config.js');
11
11
 
12
12
  // -- Get environment
13
13
  let env = process.argv[2] || 'development';
14
- if (env === 'dev') { env = 'development'; }
15
- if (env === 'build:qa') { env = 'qa'; }
16
- if (env === 'build:prod') { env = 'production'; }
14
+ if (env === 'dev') { env = 'development'; }
15
+ else { env = env.split(':')[1] || ''; }
17
16
 
18
17
  // -- Init Dipper
19
18
  let settings = Config.settings;
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/logo_monocromatico_horizontal.png">
2
+ <img src="https://github.com/nalancer08/App-Builders/blob/master/Logos/logo_monocromatico_horizontal_.png">
3
3
  </p>
4
4
 
5
- # Dipper
6
- NodeJS framework to build Web Apps with templates as a routes
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).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vanilla-jet",
3
- "version": "1.0.34",
3
+ "version": "1.0.36",
4
4
  "description": "VannilaJet framework",
5
5
  "main": "index.js",
6
6
  "bin": {