Skip to content

Commit d71fda9

Browse files
greenkeeper[bot]RyanZim
authored andcommitted
Update prettier to version 1.13.0 (#216)
Fix formatting
1 parent 39d8dbd commit d71fda9

File tree

2 files changed

+97
-97
lines changed

2 files changed

+97
-97
lines changed

CHANGELOG.md

+96-96
Original file line numberDiff line numberDiff line change
@@ -1,224 +1,224 @@
11
# 5.0.0 / 2018-02-06
22

3-
* Now allows passing a directory as the input (all files in the directory will be processed)
4-
* The CLI is now silent by default; added `--verbose` flag for if you want noisy logs
5-
* Doesn't exit watch mode when there's an error in the plugin chain
6-
* Removed non-obvious shorthand arguments (`-x`, `-p`, `-s`, `-t`, `-e`, `-b`, & `-c`). Also removed `-v` as an alias for `--version`.
7-
* Prevent stupid option combinations like `--dir` & `-o`, and `--watch` & `--replace`
8-
* Doesn't allow `--watch` when writing to STDOUT
3+
- Now allows passing a directory as the input (all files in the directory will be processed)
4+
- The CLI is now silent by default; added `--verbose` flag for if you want noisy logs
5+
- Doesn't exit watch mode when there's an error in the plugin chain
6+
- Removed non-obvious shorthand arguments (`-x`, `-p`, `-s`, `-t`, `-e`, `-b`, & `-c`). Also removed `-v` as an alias for `--version`.
7+
- Prevent stupid option combinations like `--dir` & `-o`, and `--watch` & `--replace`
8+
- Doesn't allow `--watch` when writing to STDOUT
99

1010
# 4.1.1 / 2017-08-17
1111

12-
* Fixed bug with `--config`
13-
* Upgraded dependencies
12+
- Fixed bug with `--config`
13+
- Upgraded dependencies
1414

1515
# 4.1.0 / 2017-06-10
1616

17-
* Can now pass a number to `--poll` to set poll interval
18-
* Updated `postcss-reporter` dependency to v4.0.0
17+
- Can now pass a number to `--poll` to set poll interval
18+
- Updated `postcss-reporter` dependency to v4.0.0
1919

2020
# 4.0.0 / 2017-05-09
2121

22-
* **BREAKING:** Upgrade postcss to v6.x
22+
- **BREAKING:** Upgrade postcss to v6.x
2323

2424
# 3.2.0 / 2017-04-21
2525

26-
* Added `--base` CLI option for keeping directory structure
26+
- Added `--base` CLI option for keeping directory structure
2727

2828
# 3.1.1 / 2017-04-04
2929

30-
* Fixed `files` property in `package.json`; `lib/` folder wasn't included in v3.1.0
30+
- Fixed `files` property in `package.json`; `lib/` folder wasn't included in v3.1.0
3131

3232
# 3.1.0 / 2017-04-04
3333

34-
* Improved incremental rebuilds for better performance in watch mode.
35-
* Switched to `read-cache` for file reading for better performance.
36-
* Set a dummy filename when reading from stdin to help plugins like autoprefixer find config files.
37-
* Updated `fs-promise` dependency.
34+
- Improved incremental rebuilds for better performance in watch mode.
35+
- Switched to `read-cache` for file reading for better performance.
36+
- Set a dummy filename when reading from stdin to help plugins like autoprefixer find config files.
37+
- Updated `fs-promise` dependency.
3838

3939
# 3.0.0 / 2017-03-15
4040

4141
## Changes since 3.0.0-beta
4242

4343
### Breaking Changes
4444

45-
* Don't exit on `CssSyntaxError` in watch mode. v2 behaved this way, but v3.0.0-beta didn't.
46-
* Error out if `from` or `to` options are set in the config file. Use command line arguments instead.
45+
- Don't exit on `CssSyntaxError` in watch mode. v2 behaved this way, but v3.0.0-beta didn't.
46+
- Error out if `from` or `to` options are set in the config file. Use command line arguments instead.
4747

4848
### New Features
4949

50-
* Add `--poll` option. v2 had this, however, this new implementation removes the capability to set the interval, which was supported in v2.
50+
- Add `--poll` option. v2 had this, however, this new implementation removes the capability to set the interval, which was supported in v2.
5151

5252
### Bugfixes
5353

54-
* Set `from` option for correct sourcemaps
55-
* Fix `--watch`'s glob handling
56-
* Fix error handling
54+
- Set `from` option for correct sourcemaps
55+
- Fix `--watch`'s glob handling
56+
- Fix error handling
5757

5858
## Changes since v2.6.0
5959

6060
### Breaking Changes
6161

62-
* Uses https://github.com/michael-ciniawsky/postcss-load-config for config files. Dropped support for the v2 config file format.
63-
* Can't set input files in config file; pass input files on the command line instead.
64-
* `--use` accepts a list of plugins. This may cause issues if you have your list of css files at the end of your command.
65-
* Can't pass options to plugins via `--plugin.key=value` anymore, use a config file.
66-
* Changed usage of the `--map` option; use `--map` for external sourcemaps, `--no-map` to disable all maps. Inline sourcemaps are default.
67-
* Removed `--log` flag; this behavior is now default.
68-
* Removed the `--local-plugins` flag; same result can be achieved with `postcss.config.js`.
69-
* Removed the global `watchCSS` handler, plugins that import/rely on other files should use a `dependency` message instead.
70-
* Changed behavior of the `--poll` option; no longer accepts an integer `interval`.
62+
- Uses https://github.com/michael-ciniawsky/postcss-load-config for config files. Dropped support for the v2 config file format.
63+
- Can't set input files in config file; pass input files on the command line instead.
64+
- `--use` accepts a list of plugins. This may cause issues if you have your list of css files at the end of your command.
65+
- Can't pass options to plugins via `--plugin.key=value` anymore, use a config file.
66+
- Changed usage of the `--map` option; use `--map` for external sourcemaps, `--no-map` to disable all maps. Inline sourcemaps are default.
67+
- Removed `--log` flag; this behavior is now default.
68+
- Removed the `--local-plugins` flag; same result can be achieved with `postcss.config.js`.
69+
- Removed the global `watchCSS` handler, plugins that import/rely on other files should use a `dependency` message instead.
70+
- Changed behavior of the `--poll` option; no longer accepts an integer `interval`.
7171

7272
### New Features
7373

74-
* `--ext` (`-x`) option allows you to set the file extensions for your output files when using `--dir`.
75-
* `--env` allows you to set `NODE_ENV` in a cross-platform manner.
74+
- `--ext` (`-x`) option allows you to set the file extensions for your output files when using `--dir`.
75+
- `--env` allows you to set `NODE_ENV` in a cross-platform manner.
7676

7777
Migration guide for upgrading from v2: https://github.com/postcss/postcss-cli/wiki/Migrating-from-v2-to-v3
7878

7979
# 3.0.0-beta / 2017-03-17
8080

8181
## Breaking Changes
8282

83-
* Uses https://github.com/michael-ciniawsky/postcss-load-config for config files. Dropped support for the v2 config file format.
84-
* Can't set input files in config file; pass input files on the command line instead.
85-
* `--use` accepts a list of plugins. This may cause issues if you have your list of css files at the end of your command.
86-
* Can't pass options to plugins via `--plugin.key=value` anymore, use a config file.
87-
* Changed usage of the `--map` option; use `--map` for external sourcemaps, `--no-map` to disable all maps. Inline sourcemaps are default.
88-
* Removed `--log` flag; this behavior is now default.
89-
* Removed the `--local-plugins` flag; same result can be achieved with `postcss.config.js`.
90-
* Removed the global `watchCSS` handler, plugins that import/rely on other files should use a `dependency` message instead.
83+
- Uses https://github.com/michael-ciniawsky/postcss-load-config for config files. Dropped support for the v2 config file format.
84+
- Can't set input files in config file; pass input files on the command line instead.
85+
- `--use` accepts a list of plugins. This may cause issues if you have your list of css files at the end of your command.
86+
- Can't pass options to plugins via `--plugin.key=value` anymore, use a config file.
87+
- Changed usage of the `--map` option; use `--map` for external sourcemaps, `--no-map` to disable all maps. Inline sourcemaps are default.
88+
- Removed `--log` flag; this behavior is now default.
89+
- Removed the `--local-plugins` flag; same result can be achieved with `postcss.config.js`.
90+
- Removed the global `watchCSS` handler, plugins that import/rely on other files should use a `dependency` message instead.
9191

9292
## New Features
9393

94-
* `--ext` (`-x`) option allows you to set the file extensions for your output files when using `--dir`.
95-
* `--env` allows you to set `NODE_ENV` in a cross-platform manner.
94+
- `--ext` (`-x`) option allows you to set the file extensions for your output files when using `--dir`.
95+
- `--env` allows you to set `NODE_ENV` in a cross-platform manner.
9696

9797
Migration guide: https://github.com/postcss/postcss-cli/wiki/Migrating-from-v2-to-v3
9898

9999
# 2.6.0 / 2016-08-30
100100

101-
* Add log option
102-
* Update postcss-import to v8.1.2 from v7.1.0
103-
* Update globby to v4.1.0 from v3.0.1
104-
* Update postcss-url to v5.1.2 from v4.0.0
105-
* Update jshint to v2.9.2 from v2.6.3
106-
* Update chokidar to v1.5.1 from v1.0.3
107-
* Update yargs to v4.7.1 from v3.32.0
108-
* Support es6 export
109-
* Allow running without plugins
110-
* Add test for --poll
111-
* Add --poll flag
101+
- Add log option
102+
- Update postcss-import to v8.1.2 from v7.1.0
103+
- Update globby to v4.1.0 from v3.0.1
104+
- Update postcss-url to v5.1.2 from v4.0.0
105+
- Update jshint to v2.9.2 from v2.6.3
106+
- Update chokidar to v1.5.1 from v1.0.3
107+
- Update yargs to v4.7.1 from v3.32.0
108+
- Support es6 export
109+
- Allow running without plugins
110+
- Add test for --poll
111+
- Add --poll flag
112112

113113
# 2.5.2 / 2016-04-18
114114

115-
* Fix typo in help message: -use => [--use|-u]
116-
* npm install --save mkdirp
117-
* Support mkdirp to create dest path if it doesn't exists
118-
* Fix booleans in config file
115+
- Fix typo in help message: -use => [--use|-u]
116+
- npm install --save mkdirp
117+
- Support mkdirp to create dest path if it doesn't exists
118+
- Fix booleans in config file
119119

120120
# 2.5.1 / 2016-02-11
121121

122-
* fix `input` argument
122+
- fix `input` argument
123123

124124
# 2.5.0 / 2016-01-30
125125

126-
* move to postcss/postcss-cli repository
127-
* Update Readme.md
126+
- move to postcss/postcss-cli repository
127+
- Update Readme.md
128128

129129
# 2.4.1 / 2016-01-27
130130

131-
* improve warning disply format
131+
- improve warning disply format
132132

133133
# 2.4.0 / 2016-01-15
134134

135-
* add support for source maps
135+
- add support for source maps
136136

137137
# 2.3.3 / 2015-12-28
138138

139-
* add usage example for `local-plugins` option in config file
139+
- add usage example for `local-plugins` option in config file
140140

141141
# 2.3.2 / 2015-10-27
142142

143-
* auto-configure postcss-import support
144-
* add support for watching multiple entry points
143+
- auto-configure postcss-import support
144+
- add support for watching multiple entry points
145145

146146
# 2.3.1 / 2015-10-25
147147

148-
* update Travis config
149-
* upgrade postcss-import dependency - fix deprecation warnings during make test-watch
148+
- update Travis config
149+
- upgrade postcss-import dependency - fix deprecation warnings during make test-watch
150150

151151
# 2.3.0 / 2015-10-24
152152

153-
* add --local-plugins option that lets postcss-cli to look for plugins in current directory
153+
- add --local-plugins option that lets postcss-cli to look for plugins in current directory
154154

155155
# 2.2.0 / 2015-10-09
156156

157-
* add support for --replace|-r - if used input files are replaced with generated output
158-
* refactor support for custom syntax options
157+
- add support for --replace|-r - if used input files are replaced with generated output
158+
- refactor support for custom syntax options
159159

160160
# 2.1.1 / 2015-10-08
161161

162-
* add globby to support wildcards in Windows
163-
* remove obsolete note on postcss-import compatibility
162+
- add globby to support wildcards in Windows
163+
- remove obsolete note on postcss-import compatibility
164164

165165
# 2.1.0 / 2015-09-01
166166

167-
* add support for PostCSS 5.0 custom syntax options
167+
- add support for PostCSS 5.0 custom syntax options
168168

169169
# 2.0.0 / 2015-08-24
170170

171-
* remove support for --safe option
172-
* switch to using postcss 5.x
171+
- remove support for --safe option
172+
- switch to using postcss 5.x
173173

174174
# 1.5.0 / 2015-07-20
175175

176-
* add watch mode (-w|--watch) in which postcss-cli observes and recompiles inputs whenever they change
177-
* update neo-async dependency to released version
178-
* update postcss-url dependency (used in tests only)
176+
- add watch mode (-w|--watch) in which postcss-cli observes and recompiles inputs whenever they change
177+
- update neo-async dependency to released version
178+
- update postcss-url dependency (used in tests only)
179179

180180
# 1.4.0 / 2015-07-12
181181

182-
* allow specifying input file via config file
183-
* allow specifying -u|--use via config file
182+
- allow specifying input file via config file
183+
- allow specifying -u|--use via config file
184184

185185
# 1.3.1 / 2015-05-03
186186

187-
* update npm keyword: postcssrunner -> postcss-runner
187+
- update npm keyword: postcssrunner -> postcss-runner
188188

189189
# 1.3.0 / 2015-04-28
190190

191-
* add support for stdin/stdout if no input/output file specified
191+
- add support for stdin/stdout if no input/output file specified
192192

193193
# 1.2.1 / 2015-04-20
194194

195-
* fix typo in readme
195+
- fix typo in readme
196196

197197
# 1.2.0 / 2015-04-02
198198

199-
* display warnings and errors
200-
* stop testing on node 0.10
199+
- display warnings and errors
200+
- stop testing on node 0.10
201201

202202
# 1.1.0 / 2015-03-28
203203

204-
* prefer postcss async API if available
204+
- prefer postcss async API if available
205205

206206
# 1.0.0 / 2015-03-22
207207

208-
* use official yargs version
209-
* add support for multiple input files
208+
- use official yargs version
209+
- add support for multiple input files
210210

211211
# 0.3.0 / 2015-03-19
212212

213-
* support JS format as plugins config
213+
- support JS format as plugins config
214214

215215
# 0.2.0 / 2015-03-13
216216

217-
* use autoprefixer instead of autoprefixer-core
218-
* change short options for --use from `p` to `u`
219-
* add -v|--version support
220-
* add --safe option to enable postcss safe mode
217+
- use autoprefixer instead of autoprefixer-core
218+
- change short options for --use from `p` to `u`
219+
- add -v|--version support
220+
- add --safe option to enable postcss safe mode
221221

222222
# 0.1.0 / 2015-03-11
223223

224-
* initial implementaion
224+
- initial implementaion

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"eslint-config-problems": "0.0.2",
3939
"nyc": "^11.0.2",
4040
"postcss-import": "^11.0.0",
41-
"prettier": "1.12.1",
41+
"prettier": "1.13.0",
4242
"sugarss": "^1.0.0",
4343
"uuid": "^3.0.1"
4444
},

0 commit comments

Comments
 (0)