5htp 0.3.3-1 → 0.3.5

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,7 +1,7 @@
1
1
  {
2
2
  "name": "5htp",
3
3
  "description": "Convenient TypeScript framework designed for Performance and Productivity.",
4
- "version": "0.3.3-1",
4
+ "version": "0.3.5",
5
5
  "author": "Gaetan Le Gac (https://github.com/gaetanlegac)",
6
6
  "repository": "git://github.com/gaetanlegac/5htp.git",
7
7
  "license": "MIT",
@@ -9,11 +9,6 @@ import type App from '../../../app';
9
9
 
10
10
  module.exports = (app: App, dev: Boolean, client: boolean) => {
11
11
 
12
- // OBSOLETE: A projet can have multiple themes,
13
- // And the user have to choose in which score he wants to use a theme (by importing it)
14
- const paletteLess = fs.readFileSync( app.paths.src + '/client/assets/themes/main.less', 'utf8');
15
- const themeVars = lessToJs(paletteLess, { resolveVariables: true, stripPrefix: true });
16
-
17
12
  return [
18
13
 
19
14
  // Apply PostCSS plugins including autoprefixer
@@ -53,8 +48,6 @@ module.exports = (app: App, dev: Boolean, client: boolean) => {
53
48
  // Défault = parens-division depuis 4.0.0
54
49
  // https://lesscss.org/usage/#less-options-math
55
50
  math: 'always',
56
-
57
- globalVars: themeVars
58
51
  },
59
52
  }
60
53
  },