Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
75ce9aa
initial implementation of nodebased steps
simschla Sep 7, 2018
dfe881d
Move tests for into lib-extra.
nedtwigg Aug 20, 2018
c0bb96f
Separate the `NpmTest` tests from the rest of the test suite.
nedtwigg Aug 20, 2018
991457c
renaming package nodebased -> npm
simschla Sep 7, 2018
164f047
move subpackages to npm top-level package
simschla Sep 7, 2018
37fff43
restrict visibility
simschla Sep 7, 2018
ddfc882
revert the from-file feature for JarState as it is not used right now
simschla Sep 7, 2018
ef4d244
adapt to package renaming
simschla Sep 7, 2018
4f16998
using map as config api for npm formatter steps
simschla Sep 7, 2018
74dfaee
clearing up resources after prettier/tsfmt run
simschla Sep 7, 2018
e706531
spotbugs cleanup
simschla Sep 7, 2018
b8fb907
cleanup autorelease-code
simschla Sep 7, 2018
11b32f4
restrict engine versions according to the npm packages used
simschla Sep 7, 2018
c02b3ef
dynamically select j2v8 lib based on platform
simschla Sep 7, 2018
27dc6f9
add support for closing FormatterFunc
simschla Sep 7, 2018
0b7f6a9
implement behavioral tests
simschla Sep 7, 2018
4b25b7c
validate working config options for tsfmt
simschla Sep 7, 2018
48430c8
normalized arch name (matching arch for for ci)
simschla Sep 7, 2018
ff1d3d3
validate multiple formatting filetypes are working
simschla Sep 7, 2018
d832ccd
test prettier configuration behavior
simschla Sep 7, 2018
ff9a3d2
auto-resolve npm binary (at least for tests very useful)
simschla Sep 7, 2018
3dfe3c9
adding gradle-integration for prettier
simschla Sep 7, 2018
d21f2bc
adding gradle-integration for tsfmt
simschla Sep 7, 2018
8b1cf97
Fix minor warnings in eclipse.
nedtwigg Sep 4, 2018
18c7748
Made as much of the npm implementation package-private as possible.
nedtwigg Sep 4, 2018
5550174
Fixed the gradle typescript extension.
nedtwigg Sep 4, 2018
092a488
Make the npm tests run on CI.
nedtwigg Sep 4, 2018
83178d1
Moved all of npm's test files into testlib so that they can be reused…
nedtwigg Sep 4, 2018
ded5885
readFileFromClasspath is now compatible with the gradle classpath
nedtwigg Sep 4, 2018
4ee647e
Added an integration test for TypescriptExtension, but it doesn't pas…
nedtwigg Sep 4, 2018
0b604ab
A super incomplete version of the docs, to plant the seed.
nedtwigg Sep 4, 2018
2197c27
first documentation draft
simschla Sep 7, 2018
732e27a
unify naming
simschla Sep 7, 2018
e400fa5
provide default basedir
simschla Sep 7, 2018
1fb5838
step 1 on supporting inline-config for typescript-formatter
simschla Sep 7, 2018
b5e57e7
introduce inline-config for tsfmt step
simschla Sep 7, 2018
2a21254
adding more integration tests for typescript extension
simschla Sep 7, 2018
3af839f
integration tests for prettier formatter
simschla Sep 7, 2018
c3c8ae1
unify usage of NpmTest category
simschla Sep 7, 2018
f817309
PR feedback: extract into sub-methods
simschla Sep 8, 2018
bf16cab
update documentation for tsfmt config file part
simschla Sep 9, 2018
3d3f304
smaller api for tsfmt config files
simschla Sep 11, 2018
6e07578
moving npm based formatters from lib-extra to lib
simschla Sep 12, 2018
ade884a
fixes for running on windows
simschla Sep 12, 2018
807bf7b
integrating PR feedback
simschla Sep 13, 2018
60f2bcd
Merge branch 'master' into feature/typescript-formatting-using-nodejs…
simschla Sep 16, 2018
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
adapt to package renaming
  • Loading branch information
simschla committed Sep 7, 2018
commit ef4d24404e33fa3c209c0c7aeea104c4e4580efd
4 changes: 2 additions & 2 deletions lib-extra/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ dependencies {
// we'll hold the core lib to a high standard
spotbugs { reportLevel = 'low' } // low|medium|high (low = sensitive to even minor mistakes)

test { useJUnit { excludeCategories 'com.diffplug.spotless.extra.nodebased.NpmTest' } }
test { useJUnit { excludeCategories 'com.diffplug.spotless.extra.npm.NpmTest' } }

task npmTest(type: Test) { useJUnit { includeCategories 'com.diffplug.spotless.extra.nodebased.NpmTest' } }
task npmTest(type: Test) { useJUnit { includeCategories 'com.diffplug.spotless.extra.npm.NpmTest' } }