bulmatown 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.
- checksums.yaml +4 -4
- data/bridgetown.automation.rb +19 -1
- data/bulmatown.gemspec +1 -1
- data/example/Gemfile +1 -1
- data/example/package.json +2 -2
- data/example/yarn.lock +5 -3
- data/lib/bulmatown.rb +0 -1
- data/lib/bulmatown/version.rb +1 -1
- data/package.json +3 -1
- metadata +3 -4
- data/lib/bulmatown/builder.rb +0 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 44b8d53449ec521be9b9e9b95bf14cb8a2aca006e80effbdc167825364cfaf91
|
|
4
|
+
data.tar.gz: 8d48278044de877511df1ef3957cf1ec9e79bdaa15a229d10a48bbc353df386a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b04142bdcb1d2d54c580de8d6494f07ea862f73f13bae7e5f3569ab1836deab89f26f4d2a42b81166edd41c0fcad8f45cf6c6ef7ab0bdd026c0aa1d6d559146
|
|
7
|
+
data.tar.gz: b571e196c503db71909c0a4b120afea8735760f9d828769c9492d518eeddfd94d5ef382f41639b01d27e447eca9bd80b04394588eaf062a38cbe0fd3cc9f8603
|
data/bridgetown.automation.rb
CHANGED
|
@@ -8,4 +8,22 @@ unless Dir.exist? "frontend/fonts"
|
|
|
8
8
|
FileUtils.mkdir_p "frontend/fonts"
|
|
9
9
|
end
|
|
10
10
|
|
|
11
|
-
run "cp node_modules/fork-awesome/fonts/* frontend/fonts"
|
|
11
|
+
run "cp node_modules/fork-awesome/fonts/* frontend/fonts"
|
|
12
|
+
|
|
13
|
+
javascript_import 'import Bulmatown from "bulmatown"'
|
|
14
|
+
|
|
15
|
+
if ask "The Bulmatown theme can update layout and page templates in your site to use the theme. Would you like to continue?"
|
|
16
|
+
layout_tmpl = ->(tmpl_name) do
|
|
17
|
+
<<~HTML
|
|
18
|
+
---
|
|
19
|
+
layout: bulmatown/#{tmpl_name}
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
{{ content }}
|
|
23
|
+
HTML
|
|
24
|
+
end
|
|
25
|
+
create_file "src/_layouts/home.html", layout_tmpl(:home)
|
|
26
|
+
create_file "src/_layouts/page.html", layout_tmpl(:page)
|
|
27
|
+
create_file "src/_layouts/post.html", layout_tmpl(:post)
|
|
28
|
+
|
|
29
|
+
end
|
data/bulmatown.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.version = Bulmatown::VERSION
|
|
8
8
|
spec.author = "Jared White"
|
|
9
9
|
spec.email = "jared@whitefusion.io"
|
|
10
|
-
spec.summary = "A
|
|
10
|
+
spec.summary = "A Bulma CSS starter theme for Bridgetown"
|
|
11
11
|
spec.homepage = "https://github.com/whitefusionhq/bulmatown"
|
|
12
12
|
spec.license = "MIT"
|
|
13
13
|
|
data/example/Gemfile
CHANGED
|
@@ -19,4 +19,4 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
19
19
|
gem "bridgetown"
|
|
20
20
|
gem "bridgetown-quick-search", "~> 1.0", :group => :bridgetown_plugins
|
|
21
21
|
|
|
22
|
-
gem "bulmatown",
|
|
22
|
+
gem "bulmatown", group: :bridgetown_plugins
|
data/example/package.json
CHANGED
data/example/yarn.lock
CHANGED
|
@@ -1351,7 +1351,7 @@ braces@~3.0.2:
|
|
|
1351
1351
|
dependencies:
|
|
1352
1352
|
fill-range "^7.0.1"
|
|
1353
1353
|
|
|
1354
|
-
bridgetown-quick-search
|
|
1354
|
+
bridgetown-quick-search@^1.0.3:
|
|
1355
1355
|
version "1.0.3"
|
|
1356
1356
|
resolved "https://registry.yarnpkg.com/bridgetown-quick-search/-/bridgetown-quick-search-1.0.3.tgz#4fc34dea418fc97ba25f7ccf1aea6cbc7c048d91"
|
|
1357
1357
|
integrity sha512-IAeldS+EB+AU/3MIr0jvQKBIPR852aRxlM38/cEcs4KDh3v9ML3CtgnCI+48V6UBDb3NFzlKEJ91SSxRz3lyiA==
|
|
@@ -1533,8 +1533,10 @@ bulma@^0.9:
|
|
|
1533
1533
|
resolved "https://registry.yarnpkg.com/bulma/-/bulma-0.9.0.tgz#948c5445a49e9d7546f0826cb3820d17178a814f"
|
|
1534
1534
|
integrity sha512-rV75CJkubNUroAt0qCRkjznZLoaXq/ctfMXsMvKSL84UetbSyx5REl96e8GoQ04G4Tkw0XF3STECffTOQrbzOQ==
|
|
1535
1535
|
|
|
1536
|
-
bulmatown
|
|
1537
|
-
version "
|
|
1536
|
+
bulmatown@^1.0.0:
|
|
1537
|
+
version "1.0.0"
|
|
1538
|
+
resolved "https://registry.yarnpkg.com/bulmatown/-/bulmatown-1.0.0.tgz#1270f75e64233c1bfb8223cc987d966e50055326"
|
|
1539
|
+
integrity sha512-gq6BgW8IonK/xH+vjqkTB0OleI9liE7Nc0TLQZlIzuwg94LTWNPy25zOnsZUJcUV98/xeqcA0cnuA3UJuIvr8Q==
|
|
1538
1540
|
dependencies:
|
|
1539
1541
|
bridgetown-quick-search "^1.0.3"
|
|
1540
1542
|
bulma "^0.9"
|
data/lib/bulmatown.rb
CHANGED
data/lib/bulmatown/version.rb
CHANGED
data/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bulmatown",
|
|
3
|
-
"
|
|
3
|
+
"description": "A Bulma CSS starter theme for Bridgetown",
|
|
4
|
+
"version": "1.0.1",
|
|
4
5
|
"main": "frontend/javascript/index.js",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
@@ -11,6 +12,7 @@
|
|
|
11
12
|
"license": "MIT",
|
|
12
13
|
"private": false,
|
|
13
14
|
"files": [
|
|
15
|
+
"components",
|
|
14
16
|
"frontend"
|
|
15
17
|
],
|
|
16
18
|
"dependencies": {
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bulmatown
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jared White
|
|
@@ -179,7 +179,6 @@ files:
|
|
|
179
179
|
- layouts/bulmatown/page.html
|
|
180
180
|
- layouts/bulmatown/post.html
|
|
181
181
|
- lib/bulmatown.rb
|
|
182
|
-
- lib/bulmatown/builder.rb
|
|
183
182
|
- lib/bulmatown/version.rb
|
|
184
183
|
- package.json
|
|
185
184
|
- yarn.lock
|
|
@@ -187,7 +186,7 @@ homepage: https://github.com/whitefusionhq/bulmatown
|
|
|
187
186
|
licenses:
|
|
188
187
|
- MIT
|
|
189
188
|
metadata:
|
|
190
|
-
yarn-add: bulmatown@1.0.
|
|
189
|
+
yarn-add: bulmatown@1.0.1
|
|
191
190
|
post_install_message:
|
|
192
191
|
rdoc_options: []
|
|
193
192
|
require_paths:
|
|
@@ -206,5 +205,5 @@ requirements: []
|
|
|
206
205
|
rubygems_version: 3.0.6
|
|
207
206
|
signing_key:
|
|
208
207
|
specification_version: 4
|
|
209
|
-
summary: A
|
|
208
|
+
summary: A Bulma CSS starter theme for Bridgetown
|
|
210
209
|
test_files: []
|