Skip to content

Instantly share code, notes, and snippets.

@mgdodge
mgdodge / check-audit_npm6@latest
Created July 7, 2021 20:20
npm-audit-resolver@next via npm 6 and npm 7
>>>> npm audit --json
>>>> exit: 1
Total of 18 actions to process
--------------------------------------------------
[high] Remote Code Execution
- devDependencies (optional): rollup-plugin-vue>@vue/component-compiler>pug
--------------------------------------------------
[high] Remote Code Execution
- devDependencies (optional): rollup-plugin-vue>@vue/component-compiler>pug>pug-code-gen
--------------------------------------------------
@mgdodge
mgdodge / babel.config.js
Last active January 30, 2020 05:33
Minimal snowpack vue example
// File Location: babel.config.js
module.exports = {
presets: [
['@babel/preset-env', { modules: false }],
],
plugins: [
['snowpack/assets/babel-plugin.js', {}],
]
};