bitters 2.0.1 → 2.0.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -1
- data/README.md +9 -11
- data/RELEASING.md +7 -8
- data/bitters.gemspec +2 -2
- data/contrib/index.html +1 -2
- data/core/_base.scss +2 -2
- data/lib/bitters/version.rb +1 -1
- data/package-lock.json +35 -23
- data/package.json +2 -3
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cfd13fc03d4c67e9aa3bdb0714ca334fa27f97b0615c7be1ddeb1aa3b4b5b52a
|
|
4
|
+
data.tar.gz: 6b849d15447b60ba6e336b518de1c09fb15007ab5df9565024c91ee608fb0bd3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a05d63629a1d2f359a005e59927054c6bad2e1abc99533daf6a17f99b535aed8adf2dd235df71f1dbf13b53fcfd46cfe654a7c5114697a953f9cd16ed409ed8
|
|
7
|
+
data.tar.gz: 6e71d9df4a3fe77134547b551e47be81871e1eb843b2a811d040a556f7352b4dc0e530be6fdf072f911050a6775eb12f921096833af0e70c18f1002ef2aefcda
|
data/CHANGELOG.md
CHANGED
|
@@ -7,7 +7,15 @@ project adheres to [Semantic Versioning](http://semver.org).
|
|
|
7
7
|
|
|
8
8
|
Nothing at the moment.
|
|
9
9
|
|
|
10
|
-
[unreleased]: https://github.com/thoughtbot/bitters/compare/v2.0.
|
|
10
|
+
[unreleased]: https://github.com/thoughtbot/bitters/compare/v2.0.2...HEAD
|
|
11
|
+
|
|
12
|
+
## [2.0.2] - 2019-10-08
|
|
13
|
+
|
|
14
|
+
### Removed
|
|
15
|
+
|
|
16
|
+
- Removed sass runtime dependency
|
|
17
|
+
|
|
18
|
+
[2.0.2]: https://github.com/thoughtbot/bitters/compare/v2.0.1...v2.0.2
|
|
11
19
|
|
|
12
20
|
## [2.0.1] - 2019-09-03
|
|
13
21
|
|
data/README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
<img src="https://images.thoughtbot.com/bourbon/bitters-logo-v2.svg" width="200" alt="Bitters">
|
|
2
2
|
|
|
3
3
|
[](https://houndci.com)
|
|
4
4
|
|
|
5
|
-
## Scaffold styles, variables and structure for
|
|
5
|
+
## Scaffold styles, variables and structure for web projects.
|
|
6
6
|
|
|
7
|
-
Bitters helps designers start projects faster by defining a basic set of Sass
|
|
7
|
+
Bitters helps designers start projects faster by defining a basic set of CSS and Sass
|
|
8
8
|
variables, default element style and project structure. It’s been specifically
|
|
9
9
|
designed for use within web applications. Bitters should live in your project’s
|
|
10
10
|
root Sass directory and we *encourage* you to modify and extend it to meet your
|
|
11
|
-
|
|
11
|
+
project's needs.
|
|
12
12
|
|
|
13
13
|
Bitters is made to work alongside a CSS reset or style-normalizer; not replace
|
|
14
14
|
one. We like to use [Normalize].
|
|
@@ -17,7 +17,6 @@ one. We like to use [Normalize].
|
|
|
17
17
|
|
|
18
18
|
### Helpful Links
|
|
19
19
|
|
|
20
|
-
- [Demo](http://bitters.bourbon.io)
|
|
21
20
|
- [Change log](CHANGELOG.md)
|
|
22
21
|
- [Twitter](https://twitter.com/bourbonsass)
|
|
23
22
|
- [Stack Overflow](https://stackoverflow.com/questions/tagged/bitters)
|
|
@@ -60,14 +59,14 @@ one. We like to use [Normalize].
|
|
|
60
59
|
A `base` directory will be generated which contains all of the Bitters
|
|
61
60
|
files.
|
|
62
61
|
|
|
63
|
-
1. Import Bitters
|
|
62
|
+
1. Import Bitters in your `application.css.scss` or main manifest
|
|
64
63
|
file. All additional stylesheets should be imported below Bitters.
|
|
65
64
|
|
|
66
65
|
```scss
|
|
67
66
|
@import "base/base";
|
|
68
67
|
```
|
|
69
68
|
|
|
70
|
-
1. Once
|
|
69
|
+
1. Once Bitters is set up, you can begin to import your styles
|
|
71
70
|
below them.
|
|
72
71
|
|
|
73
72
|
```scss
|
|
@@ -89,8 +88,7 @@ Customize Bitters for your site as you see fit.
|
|
|
89
88
|
### Variables
|
|
90
89
|
|
|
91
90
|
This houses all variables that are used, or will be used, in more than one file
|
|
92
|
-
in your site.
|
|
93
|
-
file start with `$base` to indicate that they are the most basic variables.
|
|
91
|
+
in your site.
|
|
94
92
|
|
|
95
93
|
### Typography
|
|
96
94
|
|
|
@@ -108,8 +106,8 @@ inherit from the variables file but make it really easy to be overridden.
|
|
|
108
106
|
### Buttons
|
|
109
107
|
|
|
110
108
|
Basic style for `button` and `input[type="submit"]`. Base button styles can be
|
|
111
|
-
changed by modifying the styles applied to `button`
|
|
112
|
-
in `base/_buttons.scss
|
|
109
|
+
changed by modifying the styles applied to `button` as well as `[type='button']`,
|
|
110
|
+
`[type='reset']`, and `[type='submit']` in the `base/_buttons.scss` file.
|
|
113
111
|
|
|
114
112
|
## Command Line Interface
|
|
115
113
|
|
data/RELEASING.md
CHANGED
|
@@ -6,7 +6,8 @@
|
|
|
6
6
|
- `core/_base.scss`
|
|
7
7
|
- `package.json`
|
|
8
8
|
|
|
9
|
-
1. Update `CHANGELOG.md`. We follow the guidelines from
|
|
9
|
+
1. Update `CHANGELOG.md`. We follow the guidelines from
|
|
10
|
+
[Keep a Changelog][keep-a-changelog].
|
|
10
11
|
|
|
11
12
|
1. Commit changes. Use the convention “Bitters vX.X.X” in your commit message.
|
|
12
13
|
There shouldn’t be code changes, and thus CI doesn’t need to run.
|
|
@@ -14,17 +15,15 @@
|
|
|
14
15
|
1. Run `bundle exec rake release`, which tags the release, pushes the tag to
|
|
15
16
|
GitHub, and pushes the gem to RubyGems.org.
|
|
16
17
|
|
|
17
|
-
1. Draft a [new GitHub release][github-release].
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
1. Draft a [new GitHub release][github-release].
|
|
19
|
+
|
|
20
|
+
1. Tweet about the release from the [@bourbonsass] Twitter account, e.g.
|
|
20
21
|
|
|
21
22
|
> We’ve released Bitters {release_title}: {release_link}
|
|
22
23
|
|
|
23
|
-
1. If needed, update the [contributing page]
|
|
24
|
+
1. If needed, update the [contributing page].
|
|
24
25
|
|
|
25
|
-
[
|
|
26
|
+
[keep-a-changelog]: https://keepachangelog.com/en/1.0.0/
|
|
26
27
|
[github-release]: https://github.com/thoughtbot/bitters/releases/new
|
|
27
28
|
[@bourbonsass]: https://twitter.com/bourbonsass
|
|
28
|
-
[Zapier]: https://zapier.com
|
|
29
29
|
[contributing page]: https://github.com/thoughtbot/bitters/blob/master/contrib/index.html
|
|
30
|
-
[website example page]: https://github.com/thoughtbot/bitters/blob/gh-pages/example.html
|
data/bitters.gemspec
CHANGED
|
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
|
|
|
6
6
|
s.add_development_dependency "bundler", "~> 1.3"
|
|
7
7
|
s.add_development_dependency "rake"
|
|
8
8
|
s.add_development_dependency "rspec"
|
|
9
|
-
s.
|
|
9
|
+
s.add_development_dependency "sass", "~> 3.4"
|
|
10
10
|
s.add_runtime_dependency "thor", "~> 0.19"
|
|
11
11
|
s.authors = [
|
|
12
12
|
"Kyle Fiedler",
|
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
s.email = "design+bitters@thoughtbot.com"
|
|
25
25
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
26
26
|
s.files = `git ls-files`.split($/)
|
|
27
|
-
s.homepage = "
|
|
27
|
+
s.homepage = "https://github.com/thoughtbot/bitters"
|
|
28
28
|
s.license = "MIT"
|
|
29
29
|
s.name = "bitters"
|
|
30
30
|
s.require_paths = ["lib"]
|
data/contrib/index.html
CHANGED
|
@@ -11,8 +11,7 @@
|
|
|
11
11
|
<header class="welcome-message" role="banner">
|
|
12
12
|
<div class="container">
|
|
13
13
|
<h1>
|
|
14
|
-
Hey there! Thanks for contributing to
|
|
15
|
-
<a href="http://bitters.bourbon.io">Bitters</a>.
|
|
14
|
+
Hey there! Thanks for contributing to Bitters.
|
|
16
15
|
</h1>
|
|
17
16
|
<p>
|
|
18
17
|
The purpose of this page is to help contributors view and test
|
data/core/_base.scss
CHANGED
data/lib/bitters/version.rb
CHANGED
data/package-lock.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "Bitters",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"lockfileVersion": 1,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"dependencies": {
|
|
@@ -246,15 +246,15 @@
|
|
|
246
246
|
"dev": true
|
|
247
247
|
},
|
|
248
248
|
"@thoughtbot/stylelint-config": {
|
|
249
|
-
"version": "1.0
|
|
250
|
-
"resolved": "https://registry.npmjs.org/@thoughtbot/stylelint-config/-/stylelint-config-1.0.
|
|
251
|
-
"integrity": "sha512-
|
|
249
|
+
"version": "1.1.0",
|
|
250
|
+
"resolved": "https://registry.npmjs.org/@thoughtbot/stylelint-config/-/stylelint-config-1.1.0.tgz",
|
|
251
|
+
"integrity": "sha512-DVHlAQ9AcsPl75/3YYeEviecpQ1waNxGLjRcgQaXmEo2J/GsHFtCiHUoN6JXI2GatfGZ6M7rrB8S36CaCczhoA==",
|
|
252
252
|
"dev": true,
|
|
253
253
|
"requires": {
|
|
254
254
|
"stylelint-config-recommended": "^2.2.0",
|
|
255
255
|
"stylelint-declaration-block-no-ignored-properties": "^2.0.0",
|
|
256
256
|
"stylelint-order": "^3.0.0",
|
|
257
|
-
"stylelint-scss": "
|
|
257
|
+
"stylelint-scss": ">=3.9.3"
|
|
258
258
|
}
|
|
259
259
|
},
|
|
260
260
|
"@types/events": {
|
|
@@ -5740,9 +5740,9 @@
|
|
|
5740
5740
|
}
|
|
5741
5741
|
},
|
|
5742
5742
|
"postcss": {
|
|
5743
|
-
"version": "7.0.
|
|
5744
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.
|
|
5745
|
-
"integrity": "sha512
|
|
5743
|
+
"version": "7.0.18",
|
|
5744
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz",
|
|
5745
|
+
"integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==",
|
|
5746
5746
|
"dev": true,
|
|
5747
5747
|
"requires": {
|
|
5748
5748
|
"chalk": "^2.4.2",
|
|
@@ -7451,12 +7451,12 @@
|
|
|
7451
7451
|
}
|
|
7452
7452
|
},
|
|
7453
7453
|
"stylelint-order": {
|
|
7454
|
-
"version": "3.0
|
|
7455
|
-
"resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-3.0.
|
|
7456
|
-
"integrity": "sha512-
|
|
7454
|
+
"version": "3.1.0",
|
|
7455
|
+
"resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-3.1.0.tgz",
|
|
7456
|
+
"integrity": "sha512-0BGQhRWOcdPi4oDVuInOHiXWzgCB9vEwJt5fvBre/I/brXLIumC9uiiAc3E6xUiUdWEmU2OLzAop8LK8UY0X0A==",
|
|
7457
7457
|
"dev": true,
|
|
7458
7458
|
"requires": {
|
|
7459
|
-
"lodash": "^4.17.
|
|
7459
|
+
"lodash": "^4.17.15",
|
|
7460
7460
|
"postcss": "^7.0.17",
|
|
7461
7461
|
"postcss-sorting": "^5.0.1"
|
|
7462
7462
|
},
|
|
@@ -7492,10 +7492,16 @@
|
|
|
7492
7492
|
}
|
|
7493
7493
|
}
|
|
7494
7494
|
},
|
|
7495
|
+
"lodash": {
|
|
7496
|
+
"version": "4.17.15",
|
|
7497
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
|
|
7498
|
+
"integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==",
|
|
7499
|
+
"dev": true
|
|
7500
|
+
},
|
|
7495
7501
|
"postcss": {
|
|
7496
|
-
"version": "7.0.
|
|
7497
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.
|
|
7498
|
-
"integrity": "sha512
|
|
7502
|
+
"version": "7.0.18",
|
|
7503
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.18.tgz",
|
|
7504
|
+
"integrity": "sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==",
|
|
7499
7505
|
"dev": true,
|
|
7500
7506
|
"requires": {
|
|
7501
7507
|
"chalk": "^2.4.2",
|
|
@@ -7521,22 +7527,28 @@
|
|
|
7521
7527
|
}
|
|
7522
7528
|
},
|
|
7523
7529
|
"stylelint-scss": {
|
|
7524
|
-
"version": "3.
|
|
7525
|
-
"resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.
|
|
7526
|
-
"integrity": "sha512-
|
|
7530
|
+
"version": "3.10.1",
|
|
7531
|
+
"resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.10.1.tgz",
|
|
7532
|
+
"integrity": "sha512-YnzYmcLd5DGGsjfoj44gArjo3TWhMWjS/ytfu+1HKtToZae5ditZOXHBmrgitsHvNk9mzp5WO3/PjA5IO1GpUw==",
|
|
7527
7533
|
"dev": true,
|
|
7528
7534
|
"requires": {
|
|
7529
|
-
"lodash": "^4.17.
|
|
7535
|
+
"lodash": "^4.17.15",
|
|
7530
7536
|
"postcss-media-query-parser": "^0.2.3",
|
|
7531
7537
|
"postcss-resolve-nested-selector": "^0.1.1",
|
|
7532
7538
|
"postcss-selector-parser": "^6.0.2",
|
|
7533
|
-
"postcss-value-parser": "^4.0.
|
|
7539
|
+
"postcss-value-parser": "^4.0.2"
|
|
7534
7540
|
},
|
|
7535
7541
|
"dependencies": {
|
|
7542
|
+
"lodash": {
|
|
7543
|
+
"version": "4.17.15",
|
|
7544
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
|
|
7545
|
+
"integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==",
|
|
7546
|
+
"dev": true
|
|
7547
|
+
},
|
|
7536
7548
|
"postcss-value-parser": {
|
|
7537
|
-
"version": "4.0.
|
|
7538
|
-
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.0.
|
|
7539
|
-
"integrity": "sha512-
|
|
7549
|
+
"version": "4.0.2",
|
|
7550
|
+
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz",
|
|
7551
|
+
"integrity": "sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==",
|
|
7540
7552
|
"dev": true
|
|
7541
7553
|
}
|
|
7542
7554
|
}
|
data/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "Bitters",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Scaffold styles, variables and structure for Bourbon projects.",
|
|
5
5
|
"main": "Gulpfile.js",
|
|
6
6
|
"repository": {
|
|
@@ -22,9 +22,8 @@
|
|
|
22
22
|
"bugs": {
|
|
23
23
|
"url": "https://github.com/thoughtbot/bitters/issues"
|
|
24
24
|
},
|
|
25
|
-
"homepage": "http://bitters.bourbon.io",
|
|
26
25
|
"devDependencies": {
|
|
27
|
-
"@thoughtbot/stylelint-config": "^1.0
|
|
26
|
+
"@thoughtbot/stylelint-config": "^1.1.0",
|
|
28
27
|
"bourbon": "^6.0.0",
|
|
29
28
|
"browser-sync": "^2.26.7",
|
|
30
29
|
"gulp": "^4.0.2",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bitters
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Fiedler
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2019-
|
|
14
|
+
date: 2019-10-08 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: bundler
|
|
@@ -62,7 +62,7 @@ dependencies:
|
|
|
62
62
|
- - "~>"
|
|
63
63
|
- !ruby/object:Gem::Version
|
|
64
64
|
version: '3.4'
|
|
65
|
-
type: :
|
|
65
|
+
type: :development
|
|
66
66
|
prerelease: false
|
|
67
67
|
version_requirements: !ruby/object:Gem::Requirement
|
|
68
68
|
requirements:
|
|
@@ -130,7 +130,7 @@ files:
|
|
|
130
130
|
- spec/bitters_spec.rb
|
|
131
131
|
- spec/fixtures/application.scss
|
|
132
132
|
- spec/spec_helper.rb
|
|
133
|
-
homepage:
|
|
133
|
+
homepage: https://github.com/thoughtbot/bitters
|
|
134
134
|
licenses:
|
|
135
135
|
- MIT
|
|
136
136
|
metadata: {}
|