@anyblades/blades 2.3.2 → 2.3.3

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/blades.gemspec +4 -4
  2. package/package.json +22 -15
package/blades.gemspec CHANGED
@@ -2,12 +2,12 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "blades"
5
- spec.version = "2.3.2"
5
+ spec.version = "2.3.3"
6
+
6
7
  spec.authors = ["Anton Staroverov"]
7
-
8
- spec.summary = "Fully compatible and actively maintained successor to Pico CSS."
9
- spec.homepage = "https://github.com/anyblades/blades"
8
+ spec.homepage = "https://blades.ninja/"
10
9
  spec.license = "MIT"
10
+ spec.summary = "Fully compatible and actively maintained successor to Pico CSS."
11
11
 
12
12
  spec.files = Dir.glob("{_includes,css}/**/*")
13
13
  # puts "spec.files: #{spec.files.inspect}"
package/package.json CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "name": "@anyblades/blades",
3
- "version": "2.3.2",
4
- "description": "Fully compatible and actively maintained successor to Pico CSS.",
3
+ "version": "2.3.3",
5
4
  "exports": {
6
5
  ".": "./src/blades.css",
7
6
  "./standalone": "./src/blades.standalone.css",
@@ -9,25 +8,13 @@
9
8
  "./standalone/theme": "./src/blades.standalone.theme.css",
10
9
  "./float-label": "./src/float-label.css"
11
10
  },
11
+ "=== DEV ONLY": "===",
12
12
  "scripts": {
13
13
  "postcss": "postcss './src/!(_)*.css' --dir ./css/",
14
14
  "build": "npm run postcss -- --no-map",
15
15
  "start": "npm run postcss -- --watch",
16
16
  "prepublishOnly": "npm run build"
17
17
  },
18
- "repository": {
19
- "type": "git",
20
- "url": "git+https://github.com/anyblades/blades.git"
21
- },
22
- "keywords": [
23
- "css",
24
- "utilities",
25
- "helpers",
26
- "atomic",
27
- "cdn"
28
- ],
29
- "author": "Anton Staroverov",
30
- "license": "MIT",
31
18
  "devDependencies": {
32
19
  "@anyblades/pico": "^2.3.0",
33
20
  "autoprefixer": "^10.5.0",
@@ -37,5 +24,25 @@
37
24
  "postcss-import": "^16.1.1",
38
25
  "postcss-nested": "^7.0.2",
39
26
  "prettier-plugin-jinja-template": "^2.1.0"
27
+ },
28
+ "=== METADATA": "A-Z",
29
+ "author": "Anton Staroverov",
30
+ "description": "Fully compatible and actively maintained successor to Pico CSS.",
31
+ "keywords": [
32
+ "blades",
33
+ "classless",
34
+ "css-framework",
35
+ "css",
36
+ "dark-mode",
37
+ "dark-theme",
38
+ "lightweight",
39
+ "minimal",
40
+ "native-html",
41
+ "semantic"
42
+ ],
43
+ "license": "MIT",
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "git+https://github.com/anyblades/blades.git"
40
47
  }
41
48
  }