Skip to content

Commit

Permalink
Prepare for 1.3.3 (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo authored May 15, 2020
1 parent c76a9fa commit 92cb2bb
Show file tree
Hide file tree
Showing 8 changed files with 1,116 additions and 1,689 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to the "vscode-checkstyle" extension will be documented in t

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [1.3.3]
### Changed
- Update the dependencies.

## [1.3.2]
### Added
- Support customized Checkstyle modules ([#206](https://github.com/jdneo/vscode-checkstyle/issues/206))
Expand Down
2 changes: 1 addition & 1 deletion jdtls.ext/com.shengchen.checkstyle.checker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.shengchen.checkstyle</groupId>
<artifactId>parent</artifactId>
<version>1.3.2</version>
<version>1.3.3</version>
</parent>
<artifactId>com.shengchen.checkstyle.checker</artifactId>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: com.shengchen.checkstyle.runner
Bundle-SymbolicName: com.shengchen.checkstyle.runner;singleton:=true
Bundle-Version: 1.3.2
Bundle-Version: 1.3.3
Bundle-Activator: com.shengchen.checkstyle.runner.CheckstylePlugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Import-Package: org.eclipse.jdt.core,
Expand Down
2 changes: 1 addition & 1 deletion jdtls.ext/com.shengchen.checkstyle.runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.shengchen.checkstyle</groupId>
<artifactId>parent</artifactId>
<version>1.3.2</version>
<version>1.3.3</version>
</parent>
<artifactId>com.shengchen.checkstyle.runner</artifactId>
<packaging>eclipse-plugin</packaging>
Expand Down
2 changes: 1 addition & 1 deletion jdtls.ext/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.shengchen.checkstyle</groupId>
<artifactId>parent</artifactId>
<name>${base.name} :: Parent</name>
<version>1.3.2</version>
<version>1.3.3</version>
<packaging>pom</packaging>
<properties>
<base.name>Java Checkstyle Runner</base.name>
Expand Down
2,755 changes: 1,090 additions & 1,665 deletions package-lock.json

Large diffs are not rendered by default.

36 changes: 17 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-checkstyle",
"displayName": "Checkstyle for Java",
"description": "%description%",
"version": "1.3.2",
"version": "1.3.3",
"author": "Sheng Chen",
"publisher": "shengchen",
"license": "GNU LGPL V3.0",
Expand Down Expand Up @@ -109,41 +109,39 @@
"vscode:prepublish": "webpack --mode production",
"compile": "tsc -p ./",
"watch": "webpack --mode development --watch --info-verbosity verbose",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"lint": "gulp lint",
"build-plugin": "gulp build-plugin"
},
"extensionDependencies": [
"redhat.java"
],
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/lodash": "^4.14.136",
"@types/fs-extra": "^5.1.0",
"@types/lodash": "^4.14.150",
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"@types/node-fetch": "^2.5.0",
"@types/node": "^8.10.60",
"@types/node-fetch": "^2.5.7",
"@types/vscode": "1.31.0",
"gulp": "^4.0.0",
"gulp-decompress": "^2.0.2",
"gulp-decompress": "^2.0.3",
"gulp-remote-src": "^0.4.4",
"gulp-rename": "^1.4.0",
"gulp-tslint": "^8.1.3",
"gulp-tslint": "^8.1.4",
"native-ext-loader": "^2.3.0",
"ts-loader": "^5.3.3",
"tslint": "^5.8.0",
"typescript": "^3.6.3",
"vscode": "^1.1.31",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
"ts-loader": "^5.4.5",
"tslint": "^5.20.1",
"typescript": "^3.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"chokidar": "^3.0.2",
"chokidar": "^3.4.0",
"fs-extra": "^7.0.1",
"lodash": "^4.17.14",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"vscode-extension-telemetry-wrapper": "^0.3.9",
"vscode-extension-telemetry-wrapper": "0.8.0",
"vscode-languageclient": "^5.2.1",
"vscode-languageserver-protocol": "^3.14.1",
"vscode-languageserver-protocol": "^3.15.3",
"xml-js": "^1.6.11"
}
}
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { CheckstyleExtensionCommands } from './constants/commands';
import { quickFixProvider } from './quickFixProvider';

export async function activate(context: ExtensionContext): Promise<void> {
await initializeFromJsonFile(context.asAbsolutePath('./package.json'));
await initializeFromJsonFile(context.asAbsolutePath('./package.json'), { firstParty: true });
await instrumentOperation('activation', doActivate)(context);
}

Expand Down

0 comments on commit 92cb2bb

Please sign in to comment.