strata-css 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/bin/strata.js +4 -4
  2. package/package.json +2 -2
package/bin/strata.js CHANGED
@@ -132,8 +132,8 @@ else if (args.includes('--build')) build(false, true)
132
132
  else console.log(`
133
133
  Strata CSS
134
134
 
135
- strata init scaffold a new project
136
- strata --watch development mode (unminified, fast rebuild)
137
- strata --build production build (minified JS, readable CSS)
138
- strata --minify production build (minified CSS + JS, smallest output)
135
+ strata-css init scaffold a new project
136
+ strata-css --watch development mode (unminified, fast rebuild)
137
+ strata-css --build production build (minified JS, readable CSS)
138
+ strata-css --minify production build (minified CSS + JS, smallest output)
139
139
  `)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "strata-css",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
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",
@@ -10,7 +10,7 @@
10
10
  "./package.json": "./package.json"
11
11
  },
12
12
  "bin": {
13
- "strata": "bin/strata.js"
13
+ "strata-css": "bin/strata.js"
14
14
  },
15
15
  "files": [
16
16
  "src/",