microsoft/TypeScript-Vue-Starter

Note regarding NODE_ENV=development vs NODE_ENV=production

Open

#4 ouverte le 11 mai 2017

Voir sur GitHub
 (1 commentaire) (4 réactions) (0 assignés)JavaScript (620 forks)batch import
help wanted

Métriques du dépôt

Stars
 (4 451 stars)
Métriques de merge PR
 (Aucune PR mergée en 30 j)

Description

Vue Template compiler emits different content depending on this setting. It would be advised to include it in the scripts so devs can switch output easily from development to production...

"scripts": { "build": "NODE_ENV=development webpack", "test": "echo "Error: no test specified" && exit 1" },

--> Output: build.js ---> 877 kB

vs

"scripts": { "build": "NODE_ENV=production webpack", "test": "echo "Error: no test specified" && exit 1" },

--> Output: build.js ---> 104 kB (35kB gzip)

Great work on this. The workflow and example are very well done.

Guide contributeur