@24vlh/vds 0.1.0 → 0.1.2

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": "@24vlh/vds",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "VDS — Vlah Design System CSS Framework",
5
5
  "author": "@vlah.io",
6
6
  "license": "Apache-2.0",
@@ -22,39 +22,24 @@
22
22
  "url": "https://github.com/24vlh/vds.git"
23
23
  },
24
24
  "scripts": {
25
- "clean": "rimraf dist .tmp",
26
- "build:vds": "postcss src/index.css -o dist/vds.css --map",
27
- "build:vds:min": "NODE_ENV=production postcss src/index.css -o dist/vds.min.css --map",
28
- "build:core": "postcss src/core.css -o dist/core.css --map",
29
- "build:core:min": "NODE_ENV=production postcss src/core.css -o dist/core.min.css --map",
30
- "build:identity": "postcss src/identity.css -o dist/identity.css --map",
31
- "build:identity:min": "NODE_ENV=production postcss src/identity.css -o dist/identity.min.css --map",
32
- "build:components": "postcss \"src/components/**/*.css\" --dir dist/components --map",
33
- "build:components:min:tmp": "NODE_ENV=production postcss \"src/components/**/*.css\" --dir .tmp/components --map",
34
- "move:components:min": "for f in .tmp/components/*.css; do base=$(basename \"$f\" .css); mv \"$f\" \"dist/components/${base}.min.css\"; if [ -f \"${f}.map\" ]; then mv \"${f}.map\" \"dist/components/${base}.min.css.map\"; fi; done",
35
- "build:themes": "postcss \"src/themes/**/*.css\" --dir dist/themes --map",
36
- "build:themes:min:tmp": "NODE_ENV=production postcss \"src/themes/**/*.css\" --dir .tmp/themes --map",
37
- "move:themes:min": "for f in .tmp/themes/*.css; do base=$(basename \"$f\" .css); mv \"$f\" \"dist/themes/${base}.min.css\"; if [ -f \"${f}.map\" ]; then mv \"${f}.map\" \"dist/themes/${base}.min.css.map\"; fi; done",
38
- "build:css": "npm run build:vds && npm run build:core && npm run build:identity && npm run build:components && npm run build:themes",
39
- "build:css:min": "npm run build:vds:min && npm run build:core:min && npm run build:identity:min && npm run build:components:min:tmp && npm run move:components:min && npm run build:themes:min:tmp && npm run move:themes:min",
40
- "build": "npm run clean && npm run build:css && npm run build:css:min && rimraf .tmp",
41
- "dev": "npm run build:css -- --watch",
25
+ "build": "NODE_ENV=development node static/js/build.js",
26
+ "build:prod": "NODE_ENV=production node static/js/build.js",
42
27
  "doc:serve": "node static/js/server.js",
43
28
  "prepare": "husky"
44
29
  },
45
30
  "devDependencies": {
46
31
  "@types/node": "^22.0.0",
47
- "autoprefixer": "^10.0.0",
48
- "cpy-cli": "^4.2.0",
49
- "cssnano": "^5.0.0",
32
+ "autoprefixer": "^10.4.22",
33
+ "cssnano": "^5.1.15",
50
34
  "express": "^5.1.0",
35
+ "glob": "^13.0.0",
51
36
  "husky": "^9.1.7",
52
37
  "lint-staged": "^16.2.7",
53
- "postcss": "^8.0.0",
54
- "postcss-cli": "^9.0.0",
38
+ "postcss": "^8.5.6",
39
+ "postcss-cli": "^9.1.0",
55
40
  "postcss-import": "^15.0.0",
56
41
  "postcss-preset-env": "^8.0.0",
57
- "rimraf": "^5.0.0"
42
+ "rimraf": "^5.0.10"
58
43
  },
59
44
  "lint-staged": {
60
45
  "src/**/*.css": [
File without changes