bitters 2.0.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6126048a17c09f861458788bffeff92d991e9c16822bfdf4eb60590256672155
4
- data.tar.gz: 194445e55b6507c813a8a8a4f7c9c5abcdc8047e472c883da9a8626287a5fd44
3
+ metadata.gz: cfd13fc03d4c67e9aa3bdb0714ca334fa27f97b0615c7be1ddeb1aa3b4b5b52a
4
+ data.tar.gz: 6b849d15447b60ba6e336b518de1c09fb15007ab5df9565024c91ee608fb0bd3
5
5
  SHA512:
6
- metadata.gz: 8a687a84a09ed91727b495b07a2c8da406e7263a5059787bbede698083590560dd794e882d3130c2cdd2a94e5587008460509c5d1237e04cc0762824fe115dd4
7
- data.tar.gz: 8b09be9a363b75ebd50b215dd439ee0be5beab0778a3cc7fca45f2a7b928519e27fa0c3d01b257515992c1736354053fb46ba742c98261f3fcd2f63b7389cc27
6
+ metadata.gz: 2a05d63629a1d2f359a005e59927054c6bad2e1abc99533daf6a17f99b535aed8adf2dd235df71f1dbf13b53fcfd46cfe654a7c5114697a953f9cd16ed409ed8
7
+ data.tar.gz: 6e71d9df4a3fe77134547b551e47be81871e1eb843b2a811d040a556f7352b4dc0e530be6fdf072f911050a6775eb12f921096833af0e70c18f1002ef2aefcda
@@ -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.1...HEAD
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
- [<img src="https://images.thoughtbot.com/bourbon/bitters-logo-v2.svg" width="200" alt="Bitters">](http://bitters.bourbon.io)
1
+ <img src="https://images.thoughtbot.com/bourbon/bitters-logo-v2.svg" width="200" alt="Bitters">
2
2
 
3
3
  [![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg)](https://houndci.com)
4
4
 
5
- ## Scaffold styles, variables and structure for Bourbon projects.
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
- design and brand requirements.
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 after Bourbon in your `application.css.scss` or main manifest
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 Bourbon and Bitters are set up, you can begin to import your styles
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. Variable names in Bitters that are used outside of the variables
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` and `#{$all-buttons}`
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
 
@@ -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 [Keep a CHANGELOG].
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]. Upon publishing, a tweet will
18
- _automatically be sent_ on the [@bourbonsass] Twitter account via [Zapier].
19
- It will look like this:
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] and [website example page].
24
+ 1. If needed, update the [contributing page].
24
25
 
25
- [Keep a CHANGELOG]: http://keepachangelog.com
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
@@ -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.add_runtime_dependency "sass", "~> 3.4"
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 = "http://bitters.bourbon.io"
27
+ s.homepage = "https://github.com/thoughtbot/bitters"
28
28
  s.license = "MIT"
29
29
  s.name = "bitters"
30
30
  s.require_paths = ["lib"]
@@ -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
@@ -1,5 +1,5 @@
1
- // Bitters 2.0.1
2
- // http://bitters.bourbon.io
1
+ // Bitters 2.0.2
2
+ // https://github.com/thoughtbot/bitters
3
3
  // Copyright 2013-2019 thoughtbot, inc.
4
4
  // MIT License
5
5
 
@@ -1,3 +1,3 @@
1
1
  module Bitters
2
- VERSION = "2.0.1"
2
+ VERSION = "2.0.2"
3
3
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "Bitters",
3
- "version": "1.8.0",
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.2",
250
- "resolved": "https://registry.npmjs.org/@thoughtbot/stylelint-config/-/stylelint-config-1.0.2.tgz",
251
- "integrity": "sha512-5KPnCXb+l9YgUPDTtOnMTZDa1XFudXJCU4lNRVQZO3JDzK9ZyrJJ8EKngzn2yIAN8AkIC4g8YlaAGbxOU7gUaA==",
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": "^3.5.4"
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.17",
5744
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.17.tgz",
5745
- "integrity": "sha512-546ZowA+KZ3OasvQZHsbuEpysvwTZNGJv9EfyCQdsIDltPSWHAeTQ5fQy/Npi2ZDtLI3zs7Ps/p6wThErhm9fQ==",
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.1",
7455
- "resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-3.0.1.tgz",
7456
- "integrity": "sha512-isVEJ1oUoVB7bb5pYop96KYOac4c+tLOqa5dPtAEwAwQUVSbi7OPFbfaCclcTjOlXicymasLpwhRirhFWh93yw==",
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.14",
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.17",
7497
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.17.tgz",
7498
- "integrity": "sha512-546ZowA+KZ3OasvQZHsbuEpysvwTZNGJv9EfyCQdsIDltPSWHAeTQ5fQy/Npi2ZDtLI3zs7Ps/p6wThErhm9fQ==",
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.9.3",
7525
- "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.9.3.tgz",
7526
- "integrity": "sha512-pLLpwSpUwiqpAga/C22ZuN/d5ql2zVWGzG8MO+P3DQYcDNue3eZGvda/bJdkx4mDcVy06jlDt+BgSvMYUrwleQ==",
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.11",
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.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.1",
7538
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.0.1.tgz",
7539
- "integrity": "sha512-3Jk+/CVH0HBfgSSFWALKm9Hyzf4kumPjZfUxkRYZNcqFztELb2APKxv0nlX8HCdc1/ymePmT/nFf1ST6fjWH2A==",
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
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "Bitters",
3
- "version": "2.0.1",
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.2",
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.1
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-09-03 00:00:00.000000000 Z
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: :runtime
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: http://bitters.bourbon.io
133
+ homepage: https://github.com/thoughtbot/bitters
134
134
  licenses:
135
135
  - MIT
136
136
  metadata: {}