fix scoped style bug

This commit is contained in:
kmdjs 2016-05-16 10:03:53 +08:00
parent 7b141d33ca
commit f7e35ee1e9
6 changed files with 8 additions and 14 deletions

5
dist/nuclear.js vendored
View File

@ -1,4 +1,4 @@
/* Nuclear
/* Nuclear v0.2.6
* By AlloyTeam http://www.alloyteam.com/
* Github: https://github.com/AlloyTeam/Nuclear
* MIT Licensed.
@ -2641,6 +2641,5 @@ Nuclear.Class.extend = function (prop) {
return Nuclear;
return Nuclear;
}));

2
dist/nuclear.min.js vendored
View File

@ -1,4 +1,4 @@
/* Nuclear
/* Nuclear v0.2.6
* By AlloyTeam http://www.alloyteam.com/
* Github: https://github.com/AlloyTeam/Nuclear
* MIT Licensed.

View File

@ -5,7 +5,7 @@ var rename = require('gulp-rename');
var header = require('gulp-header');
var watch = require('gulp-watch');
var headerComment = '/* Nuclear\n' +
var headerComment = '/* Nuclear v0.2.6\n' +
' * By AlloyTeam http://www.alloyteam.com/\n'+
' * Github: https://github.com/AlloyTeam/Nuclear\n' +
' * MIT Licensed.\n' +
@ -27,6 +27,7 @@ gulp.task('build', function () {
])
.pipe(concat('nuclear.js'))
.pipe(header(headerComment))
.pipe(gulp.dest('dist'))
.pipe(uglify())
.pipe(rename('nuclear.min.js'))

View File

@ -1,6 +1,6 @@
{
"name": "alloynuclear",
"version": "0.2.5",
"version": "0.2.6",
"description": "made UI super easy.",
"main": "nuclear.js",
"scripts": {

View File

@ -1,9 +1,4 @@
/* Nuclear
* By AlloyTeam http://www.alloyteam.com/
* Github: https://github.com/AlloyTeam/Nuclear
* MIT Licensed.
*/
;(function (root, factory) {
;(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define([], factory);
} else if (typeof exports === 'object') {

View File

@ -1,4 +1,3 @@

return Nuclear;
return Nuclear;
}));