From 251782990ad7583c6659ca245c899cf949e3558f Mon Sep 17 00:00:00 2001 From: Sean Larkin Date: Fri, 27 Apr 2018 22:57:53 -0500 Subject: [PATCH] chore(package.json): Add sideEffects: false field in package.json This PR adds the sideEffects: false property in vue's package.json file. This allow's webpack (for those who want to opt in to requiring vue's original source files (instead of the flattened --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 2c969bee6c4..c9b82b9bab9 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "dist/*.js", "types/*.d.ts" ], + "sideEffects": false, "scripts": { "dev": "rollup -w -c scripts/config.js --environment TARGET:web-full-dev", "dev:cjs": "rollup -w -c scripts/config.js --environment TARGET:web-runtime-cjs",