Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0.6.0 - rename to Vue
  • Loading branch information
yyx990803 committed Dec 7, 2013
1 parent 03cef7d commit cdd0716
Show file tree
Hide file tree
Showing 56 changed files with 3,929 additions and 553 deletions.
16 changes: 8 additions & 8 deletions Gruntfile.js
Expand Up @@ -9,15 +9,15 @@ module.exports = function( grunt ) {
componentbuild: {
build: {
options: {
name: 'seed',
standalone: 'Seed'
name: 'vue',
standalone: 'Vue'
},
src: '.',
dest: 'dist'
},
test: {
options: {
name: 'seed.test'
name: 'vue.test'
},
src: '.',
dest: 'test'
Expand Down Expand Up @@ -53,12 +53,12 @@ module.exports = function( grunt ) {
compress: true,
mangle: true,
banner:
'// Seed.js - v' + require('./package.json').version + '\n' +
'// Vue.js - v' + require('./package.json').version + '\n' +
'// (c) 2013 Evan You\n' +
'// https://github.com/yyx990803/seed\n'
'// https://github.com/yyx990803/vue\n'
},
files: {
'dist/seed.min.js': 'dist/seed.js'
'dist/vue.min.js': 'dist/vue.js'
}
}
},
Expand Down Expand Up @@ -119,14 +119,14 @@ module.exports = function( grunt ) {
var done = this.async()
grunt.util.spawn({
cmd: './node_modules/jscoverage/bin/jscoverage',
args: ['./test/seed.test.js'],
args: ['./test/vue.test.js'],
opts: {
stdio: 'inherit'
}
}, function (err, res) {
if (err) grunt.fail.fatal(res.stdout || 'Jscoverage instrumentation failed')
grunt.log.writeln(res.stdout)
fs.unlinkSync('./test/seed.test.js')
fs.unlinkSync('./test/vue.test.js')
done()
})
})
Expand Down
7 changes: 3 additions & 4 deletions bower.json
@@ -1,11 +1,10 @@
{
"name": "seed",
"version": "0.5.2",
"main": "dist/seed.js",
"name": "vue",
"version": "0.6.0",
"main": "dist/vue.js",
"ignore": [
".*",
"examples",
"dist/seed.test.js",
"src",
"test",
"Gruntfile.js",
Expand Down
6 changes: 3 additions & 3 deletions component.json
@@ -1,8 +1,8 @@
{
"name": "seed",
"version": "0.5.2",
"name": "vue",
"version": "0.6.0",
"main": "src/main.js",
"description": "A mini MVVM framework",
"description": "Data-driven View Models",
"keywords": ["mvvm", "framework", "data binding"],
"license": "MIT",
"scripts": [
Expand Down
4 changes: 0 additions & 4 deletions dist/seed.min.js

This file was deleted.

1 comment on commit cdd0716

@RED523
Copy link

@RED523 RED523 commented on cdd0716 Dec 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

启程,vue.js!

Please sign in to comment.