fix scoped style bug
This commit is contained in:
parent
7b141d33ca
commit
f7e35ee1e9
|
@ -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;
|
||||
}));
|
|
@ -1,4 +1,4 @@
|
|||
/* Nuclear
|
||||
/* Nuclear v0.2.6
|
||||
* By AlloyTeam http://www.alloyteam.com/
|
||||
* Github: https://github.com/AlloyTeam/Nuclear
|
||||
* MIT Licensed.
|
||||
|
|
|
@ -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'))
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "alloynuclear",
|
||||
"version": "0.2.5",
|
||||
"version": "0.2.6",
|
||||
"description": "made UI super easy.",
|
||||
"main": "nuclear.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -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') {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
|
||||
return Nuclear;
|
||||
return Nuclear;
|
||||
}));
|
Loading…
Reference in New Issue