We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7dfb3f commit 44f1078Copy full SHA for 44f1078
tasks/build.js
@@ -8,7 +8,7 @@ var dest = './dist',
8
headerText,
9
headerTemplate =
10
'/*\n' +
11
- ' VueJS v{{version}}\n' +
+ ' Vue.js v{{version}}\n' +
12
' (c) 2014 Evan You\n' +
13
' License: MIT\n' +
14
'*/\n'
tasks/release.js
@@ -20,6 +20,7 @@ module.exports = function (grunt) {
20
.then('git tag v' + version)
21
.then('git push')
22
.then('git push origin v' + version)
23
+ .then('npm publish')
24
.run(this.async(), function (err) {
25
grunt.fail.fatal(err)
26
})
0 commit comments