diff --git a/.eslintignore b/.eslintignore index 07778315..b63a080a 100644 --- a/.eslintignore +++ b/.eslintignore @@ -5,4 +5,6 @@ dist # don't lint libraries src/libraries/** *.d.ts -*.js \ No newline at end of file +*.js +# don't lint settings +*.snyk \ No newline at end of file diff --git a/.prettierignore b/.prettierignore index 2424515b..efde985e 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,3 +1,5 @@ -/* prettier-ignore */ +*.css *.md -*.d.ts \ No newline at end of file +*.d.ts +# don't lint settings +.snyk \ No newline at end of file diff --git a/.snyk b/.snyk new file mode 100644 index 00000000..7364a1b4 --- /dev/null +++ b/.snyk @@ -0,0 +1,5 @@ +exclude: + global: + - styles/** + - jobs/** + - docs/** \ No newline at end of file diff --git a/package.json b/package.json index 41c13f0a..28b4a1dc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "outsystems-maps", - "version": "1.6.7", + "version": "1.6.8", "description": "Outsystems Maps", "license": "BSD-3-Clause", "scripts": { diff --git a/src/OSFramework/Maps/Constants.ts b/src/OSFramework/Maps/Constants.ts index 6d0ee68c..d47be266 100644 --- a/src/OSFramework/Maps/Constants.ts +++ b/src/OSFramework/Maps/Constants.ts @@ -1,5 +1,5 @@ // eslint-disable-next-line @typescript-eslint/no-unused-vars namespace OSFramework.Maps.Constants { /* OutSystems Maps Version */ - export const OSMapsVersion = '1.6.7'; + export const OSMapsVersion = '1.6.8'; }