strata-css 1.0.4 → 1.2.6

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": "strata-css",
3
- "version": "1.0.4",
3
+ "version": "1.2.6",
4
4
  "_versioningNote": "Stable: 1.0.0 / 1.1.0 / 2.0.0 | Beta: 1.1.0-beta.1 / 1.1.0-beta.2",
5
5
  "description": "A modern CSS framework combining Bootstrap components with Tailwind JIT processing",
6
6
  "main": "src/index.js",
@@ -13,21 +13,25 @@
13
13
  "strata-css": "bin/strata.js"
14
14
  },
15
15
  "files": [
16
- "src/",
17
- "bin/",
18
- "strata.css",
19
- "index.d.ts",
20
- "README.md",
21
- "LICENSE",
22
- "CHANGELOG.md"
23
- ],
16
+ "src/",
17
+ "bin/",
18
+ "strata.css",
19
+ "index.d.ts",
20
+ "README.md",
21
+ "LICENSE",
22
+ "CHANGELOG.md"
23
+ ],
24
24
  "scripts": {
25
25
  "dev": "node bin/strata.js --watch",
26
- "build": "node bin/strata.js --build",
27
- "minify": "node bin/strata.js --minify",
26
+ "build": "npm run build:chart && node bin/strata.js --build",
27
+ "minify": "npm run build:chart && node bin/strata.js --minify",
28
+ "build:chart": "tsc -p src/components/modules/chart/tsconfig.json",
28
29
  "benchmark": "node --expose-gc benchmark/run.js",
29
30
  "publish:stable": "npm publish --tag latest",
30
- "publish:beta": "npm publish --tag beta"
31
+ "publish:beta": "npm publish --tag beta",
32
+ "publish:skeleton": "npm publish --workspace packages/skeleton-loader --tag latest",
33
+ "publish:modal": "npm publish --workspace packages/modal --tag latest",
34
+ "publish:chart": "npm publish --workspace packages/chart --tag latest"
31
35
  },
32
36
  "keywords": [
33
37
  "css",
@@ -54,6 +58,9 @@
54
58
  "bugs": {
55
59
  "url": "https://github.com/AftabIbrahimKazi/strata/issues"
56
60
  },
61
+ "workspaces": [
62
+ "packages/*"
63
+ ],
57
64
  "type": "commonjs",
58
65
  "engines": {
59
66
  "node": ">=18.0.0"
@@ -64,5 +71,8 @@
64
71
  "cssnano": "^8.0.1",
65
72
  "glob": "^13.0.6",
66
73
  "postcss": "^8.5.14"
74
+ },
75
+ "devDependencies": {
76
+ "typescript": "^6.0.3"
67
77
  }
68
78
  }