@vanduo-oss/framework 1.2.3 → 1.2.4

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/js/vanduo.js CHANGED
@@ -1,16 +1,17 @@
1
1
  /**
2
2
  * Vanduo Framework - Main JavaScript File
3
- * v1.2.2
4
3
  */
5
4
 
6
5
  (function () {
7
6
  'use strict';
8
7
 
8
+ const VANDUO_VERSION = typeof __VANDUO_VERSION__ !== 'undefined' ? __VANDUO_VERSION__ : '0.0.0-dev';
9
+
9
10
  /**
10
11
  * Vanduo Framework Object
11
12
  */
12
13
  const Vanduo = {
13
- version: '1.2.2',
14
+ version: VANDUO_VERSION,
14
15
  components: {},
15
16
 
16
17
  /**
@@ -51,7 +52,7 @@
51
52
  }
52
53
  });
53
54
 
54
- console.log('Vanduo Framework v1.2.2 initialized');
55
+ console.log('Vanduo Framework v' + this.version + ' initialized');
55
56
  },
56
57
 
57
58
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vanduo-oss/framework",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "Zero-dependency CSS/JS framework built on Fibonacci/Golden Ratio design system with Open Color integration",
5
5
  "keywords": [
6
6
  "css",
@@ -53,8 +53,10 @@
53
53
  "pnpm": ">=8.0.0"
54
54
  },
55
55
  "scripts": {
56
- "build": "node scripts/build.js --minify",
57
- "dev": "node scripts/build.js",
56
+ "build": "node scripts/build.js",
57
+ "build:min": "node scripts/build.js --minify",
58
+ "dev": "node scripts/build.js --development",
59
+ "check:versions": "node scripts/check-version-consistency.js",
58
60
  "release:assets": "node scripts/upload-release-assets.js",
59
61
  "lint": "pnpm run lint:css && pnpm run lint:js",
60
62
  "lint:css": "stylelint 'css/**/*.css'",