diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..58f5322 --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +# Packed libraries +*.lvlibp + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib +[Tt]humbs.db + +# Executables +*.exe +*.rtexe + +# Metadata +*.aliases +*.lvlps +.cache/ diff --git a/JSON.minify.lvproj b/JSON.minify.lvproj new file mode 100644 index 0000000..cfd0625 --- /dev/null +++ b/JSON.minify.lvproj @@ -0,0 +1,417 @@ + + + + true + true + false + 0 + My Computer/VI Server + My Computer/VI Server + true + true + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/README.md b/README.md index 3add8f7..8332546 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # JSON-minify -A port of the `JSON-minify` utility to the [target-language-name] language. +A port of the `JSON-minify` utility to the LabVIEW (G) language. + +This code was developed using the [LabVIEW 2020 SP1 Free Community Edition](https://www.ni.com/pt-br/shop/labview/select-edition/labview-community-edition.html). ## Overview @@ -14,6 +16,8 @@ Please see [PORTING.md](PORTING.md) for instructions. ## Testing +This project uses for test the [Caraya Unit Test Framework](https://github.com/JKISoftware/Caraya). + Please see [TESTING.md](TESTING.md) for example tests. ## License diff --git a/docs/Code Snippet.png b/docs/Code Snippet.png new file mode 100644 index 0000000..44b7b25 Binary files /dev/null and b/docs/Code Snippet.png differ diff --git a/src/JSON Minify - Tokenizer.vi b/src/JSON Minify - Tokenizer.vi new file mode 100644 index 0000000..0b03098 Binary files /dev/null and b/src/JSON Minify - Tokenizer.vi differ diff --git a/src/JSON Minify.vi b/src/JSON Minify.vi new file mode 100644 index 0000000..6c621d8 Binary files /dev/null and b/src/JSON Minify.vi differ diff --git a/tests/Test - JSON Minify.vi b/tests/Test - JSON Minify.vi new file mode 100644 index 0000000..d0d1981 Binary files /dev/null and b/tests/Test - JSON Minify.vi differ