bitters 2.0.3 → 2.0.4

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.
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "Bitters",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "Scaffold styles, variables and structure for web projects.",
5
- "main": "Gulpfile.js",
6
5
  "repository": {
7
6
  "type": "git",
8
7
  "url": "https://github.com/thoughtbot/bitters.git"
@@ -22,18 +21,14 @@
22
21
  "url": "https://github.com/thoughtbot/bitters/issues"
23
22
  },
24
23
  "devDependencies": {
25
- "@thoughtbot/eslint-config": "^0.1.0",
26
- "@thoughtbot/stylelint-config": "^1.1.0",
27
- "bourbon": "^6.0.0",
28
- "browser-sync": "^2.26.7",
29
- "eslint": "5.16.0",
30
- "gulp": "^4.0.2",
31
- "gulp-sass": "^4.0.2",
32
- "sass": "^1.23.0",
33
- "stylelint": "^10.1.0"
24
+ "@thoughtbot/stylelint-config": "1.1.0",
25
+ "bourbon": "^7.0.0",
26
+ "parcel-bundler": "^1.12.4",
27
+ "sass": "^1.26.5",
28
+ "stylelint": "10.1.0"
34
29
  },
35
30
  "scripts": {
36
- "eslint": "npx eslint '**/*.js'",
31
+ "contrib": "npx parcel contrib/index.html --out-dir contrib/build",
37
32
  "stylelint": "npx stylelint 'core/**/*.scss'"
38
33
  }
39
34
  }
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.3
4
+ version: 2.0.4
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-10-25 00:00:00.000000000 Z
14
+ date: 2020-04-24 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler
@@ -19,14 +19,14 @@ dependencies:
19
19
  requirements:
20
20
  - - "~>"
21
21
  - !ruby/object:Gem::Version
22
- version: '1.3'
22
+ version: '2.0'
23
23
  type: :development
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: '1.3'
29
+ version: '2.0'
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: rake
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -75,14 +75,14 @@ dependencies:
75
75
  requirements:
76
76
  - - "~>"
77
77
  - !ruby/object:Gem::Version
78
- version: '0.19'
78
+ version: '1.0'
79
79
  type: :runtime
80
80
  prerelease: false
81
81
  version_requirements: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - "~>"
84
84
  - !ruby/object:Gem::Version
85
- version: '0.19'
85
+ version: '1.0'
86
86
  description: |2
87
87
  Bitters helps designers start projects faster by defining a basic set of
88
88
  Sass variables, default element style and project structure. It's been
@@ -96,7 +96,7 @@ extensions: []
96
96
  extra_rdoc_files: []
97
97
  files:
98
98
  - ".circleci/config.yml"
99
- - ".eslintrc.json"
99
+ - ".dependabot/config.yml"
100
100
  - ".gitignore"
101
101
  - ".hound.yml"
102
102
  - ".stylelintrc.json"
@@ -105,7 +105,6 @@ files:
105
105
  - CODE_OF_CONDUCT.md
106
106
  - CONTRIBUTING.md
107
107
  - Gemfile
108
- - Gulpfile.js
109
108
  - LICENSE.md
110
109
  - README.md
111
110
  - RELEASING.md
@@ -126,6 +125,7 @@ files:
126
125
  - lib/bitters.rb
127
126
  - lib/bitters/generator.rb
128
127
  - lib/bitters/version.rb
128
+ - netlify.toml
129
129
  - package-lock.json
130
130
  - package.json
131
131
  - spec/bitters_spec.rb
@@ -150,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
150
150
  - !ruby/object:Gem::Version
151
151
  version: '0'
152
152
  requirements: []
153
- rubygems_version: 3.0.4
153
+ rubygems_version: 3.0.3
154
154
  signing_key:
155
155
  specification_version: 4
156
156
  summary: Scaffold styles, variables and structure for Bourbon projects.
@@ -1,6 +0,0 @@
1
- {
2
- "extends": "@thoughtbot/eslint-config",
3
- "env": {
4
- "es6": true
5
- }
6
- }
@@ -1,45 +0,0 @@
1
- const bourbon = require('bourbon').includePaths;
2
- const browserSync = require('browser-sync').create();
3
- const gulp = require('gulp');
4
- const sass = require('gulp-sass');
5
-
6
- sass.compiler = require('sass');
7
-
8
- const paths = {
9
- markup: {
10
- src: './contrib/**/*.html',
11
- },
12
- styles: {
13
- src: [
14
- './contrib/**/*.scss',
15
- './core/**/*.scss',
16
- ],
17
- dest: './contrib/',
18
- },
19
- };
20
-
21
- function styles() {
22
- return gulp.src(paths.styles.src)
23
- .pipe(sass({includePaths: bourbon}))
24
- .pipe(gulp.dest(paths.styles.dest));
25
- };
26
-
27
- function serve(done) {
28
- browserSync.init({
29
- open: false,
30
- server: './contrib/',
31
- });
32
- done();
33
- }
34
-
35
- function reload(done) {
36
- browserSync.reload();
37
- done();
38
- }
39
-
40
- function watch() {
41
- gulp.watch(paths.markup.src, reload);
42
- gulp.watch(paths.styles.src, gulp.series(styles, reload));
43
- }
44
-
45
- gulp.task('default', gulp.series(styles, serve, watch));