diff --git a/examples/using-sass/.snyk b/examples/using-sass/.snyk new file mode 100644 index 0000000000000..c515bc9839152 --- /dev/null +++ b/examples/using-sass/.snyk @@ -0,0 +1,22 @@ +# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. +version: v1.14.1 +ignore: {} +# patches apply the minimum changes required to fix a vulnerability +patch: + SNYK-JS-LODASH-567746: + - gatsby > gatsby-plugin-typescript > @babel/core > lodash: + patched: '2020-05-06T06:39:03.451Z' + - gatsby > gatsby-plugin-typescript > @babel/core > @babel/helper-module-transforms > lodash: + patched: '2020-05-06T06:39:03.451Z' + - gatsby > gatsby-plugin-typescript > @babel/core > @babel/helpers > @babel/traverse > lodash: + patched: '2020-05-06T06:39:03.451Z' + - gatsby > gatsby-plugin-typescript > @babel/core > @babel/helper-module-transforms > @babel/helper-replace-supers > @babel/traverse > lodash: + patched: '2020-05-06T06:39:03.451Z' + - gatsby > gatsby-plugin-typescript > @babel/preset-typescript > @babel/plugin-transform-typescript > @babel/helper-create-class-features-plugin > @babel/helper-replace-supers > @babel/traverse > lodash: + patched: '2020-05-06T06:39:03.451Z' + - gatsby > gatsby-plugin-typescript > @babel/preset-typescript > @babel/plugin-transform-typescript > @babel/helper-create-class-features-plugin > @babel/helper-replace-supers > @babel/traverse > @babel/generator > lodash: + patched: '2020-05-06T06:39:03.451Z' + - gatsby > gatsby-plugin-typescript > @babel/preset-typescript > @babel/plugin-transform-typescript > @babel/helper-create-class-features-plugin > @babel/helper-replace-supers > @babel/traverse > @babel/helper-split-export-declaration > @babel/types > lodash: + patched: '2020-05-06T06:39:03.451Z' + - gatsby > gatsby-plugin-typescript > @babel/preset-typescript > @babel/plugin-transform-typescript > @babel/helper-create-class-features-plugin > @babel/helper-replace-supers > @babel/traverse > @babel/helper-function-name > @babel/template > @babel/types > lodash: + patched: '2020-05-06T06:39:03.451Z' diff --git a/examples/using-sass/package.json b/examples/using-sass/package.json index 233a00cfdbe01..c760d6ecb87c2 100644 --- a/examples/using-sass/package.json +++ b/examples/using-sass/package.json @@ -5,7 +5,9 @@ "main": "index.js", "scripts": { "develop": "gatsby develop", - "build": "gatsby build" + "build": "gatsby build", + "snyk-protect": "snyk protect", + "prepublish": "npm run snyk-protect" }, "author": "Daniel Farrell ", "license": "MIT", @@ -17,6 +19,8 @@ "gatsby-plugin-sass": "latest", "react-typography": "^0.15.10", "tachyons-sass": "^4.7.1", - "typography": "^0.15.10" - } + "typography": "^0.15.10", + "snyk": "^1.319.0" + }, + "snyk": true }