Skip to content

tsfmt maven plugin #553

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 32 commits into from
Apr 2, 2020
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
ed9612b
Add Typescript Tsfmt to Maven Plugin
source-knights Mar 26, 2020
0e429a5
Update README.md
source-knights Mar 26, 2020
bb72ebd
Update README to include tsfmt maven plugin
source-knights Mar 26, 2020
ae05010
Update CHANGES.md
source-knights Mar 26, 2020
588990a
Update CHANGES.md
source-knights Mar 26, 2020
e973a2e
Fix unit test, correct xml end tag
source-knights Mar 26, 2020
2ebe163
Spotless apply
source-knights Mar 26, 2020
6a71794
Merge branch 'master' of https://github.com/source-knights/spotless
source-knights Mar 26, 2020
588aa43
Spotless apply
source-knights Mar 26, 2020
528e708
Merge branch 'master' into master
nedtwigg Mar 28, 2020
811c661
Make the Typescript defaults a little less expensive to compute, and …
nedtwigg Mar 29, 2020
90a1870
Condense the typescript docs for plugin-maven.
nedtwigg Mar 29, 2020
97beb15
DRY on test files - reveals that tsfmtInline and tsconfig are both no…
nedtwigg Mar 29, 2020
8c10f56
Make it easier to run single maven-plugin tests from the IDE.
nedtwigg Mar 29, 2020
7bd2220
Fix warning about -color
nedtwigg Mar 29, 2020
e9da142
Fix types in the inline config.
nedtwigg Mar 29, 2020
2641254
Fix buildDir going into Tsfmt
source-knights Mar 30, 2020
9ac7a49
Fix tsconfig file
source-knights Mar 30, 2020
33b13f6
spotless apply
source-knights Mar 30, 2020
80cc770
Fix issue with FileLocator and tsconfig file
source-knights Mar 30, 2020
daff537
spotless apply
source-knights Mar 30, 2020
839bcbd
spotless apply
source-knights Mar 30, 2020
56ddfcb
add tsconfig test to plugin gradle
source-knights Mar 30, 2020
5593769
Make the buildDir a non-optional part of FileLocator.
nedtwigg Mar 31, 2020
5f4bbfa
Give FileLocator an in-place locator capability.
nedtwigg Mar 31, 2020
6d21884
Make the gradle tests use the same test files as the maven and lib te…
nedtwigg Mar 31, 2020
9567b07
Remove @Nullable from the maven plugin.
nedtwigg Mar 31, 2020
2f77a77
Revert all ned's commits since the last good commit by @source-knights
nedtwigg Apr 2, 2020
3d791da
Put the baseDir into FileLocator, and ensure that names match their "…
nedtwigg Apr 2, 2020
f5d9e07
Make the gradle tests use the same test files as the maven and lib te…
nedtwigg Mar 31, 2020
7d21bf4
Extracted `Tsfmt.locateFile` into `Tsfmt.locateLocal`.
nedtwigg Apr 2, 2020
1bb33d6
Remove maven-plugin info from the lib changelog.
nedtwigg Apr 2, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
spotless apply
  • Loading branch information
source-knights committed Mar 30, 2020
commit daff537f0dcec5a1fb8a926794fc8a7818cfb498
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ private File locateFile(String path) {
if (isNullOrEmpty(path)) {
return null;
}

File exists = new File(path);
if (exists.exists()) {
return exists;
}

throw new RuntimeException("Unable to locate file with path: " + path);
}

@Override
public FormatterStep newFormatterStep(FormatterStepConfig stepConfig) {

Expand Down