Skip to content

Commit

Permalink
(1.0.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
numso committed Nov 24, 2022
1 parent 5cb5b7e commit 3828db1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [1.0.0]
- Replaced prettier-standard with prettier and eslint. We will load in and honor your prettier version/config/plugins/ignorelist if they exist. One day we hope to do the same for eslint. For now we we just apply the `space-before-function-paren` rule and run it through --fix. I couldn't think of what else standard changes from base prettier so please file an issue if you find a missing rule.

## [0.9.2]
- I am bad at publishing versions. Many apologies. Trying again

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "prettier-standard-vscode",
"displayName": "Prettier-Standard - JavaScript formatter",
"description": "VS Code plugin for prettier + standard",
"version": "0.9.2",
"version": "1.0.0",
"publisher": "numso",
"author": "Dallin Osmun <@dallinosmun>",
"galleryBanner": {
Expand Down Expand Up @@ -51,8 +51,8 @@
"main": "./out/main",
"scripts": {
"esbuild:base": "esbuild ./src/extension.js --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"build": "rm -rf ./out && yarn esbuild:base -- --minify && vsce package",
"dev": "yarn esbuild:base -- --sourcemap --watch"
"build": "rm -rf ./out && yarn esbuild:base --minify && vsce package",
"dev": "yarn esbuild:base --sourcemap --watch"
},
"devDependencies": {
"@types/vscode": "^1.73.1",
Expand Down

0 comments on commit 3828db1

Please sign in to comment.