anubis-ui 1.0.7 → 1.0.9

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": "anubis-ui",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Class-based css generator",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -26,7 +26,7 @@ interface IEnvConfig {
26
26
  [key: string]: any
27
27
  }
28
28
 
29
- const configFolder = path.join(__dirname, '..', 'config')
29
+ const configFolder = path.join(__dirname, '..', '..', 'src', 'config');
30
30
  const configFiles = [
31
31
  'files',
32
32
  'colors',
@@ -5,7 +5,7 @@ const path = require('path')
5
5
 
6
6
  import { cssHeader, log } from './logger'
7
7
 
8
- const distDir = path.join(__dirname, '..', '..', 'dist')
8
+ const distDir = path.join(__dirname, '..', 'css')
9
9
  const outputPath = path.join(distDir, '_anubis.scss')
10
10
 
11
11
  const checkCssRuleFilePresence = () => {
@@ -14,7 +14,7 @@ const logo = () => {
14
14
  }
15
15
 
16
16
  const cssHeader = `/*!
17
- * * Anubis v.1.0.6
17
+ * * Anubis v.1.0.8
18
18
  * * Improba
19
19
  * * Released under the MIT License.
20
20
  * */`