Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.133.128.223
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
stackframe /
Delete
Unzip
Name
Size
Permission
Date
Action
dist
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.jscsrc
800
B
-rw-r--r--
2016-02-08 06:45
.jshintrc
921
B
-rw-r--r--
2015-12-30 18:08
.npmignore
90
B
-rw-r--r--
2015-01-16 21:19
CHANGELOG.md
862
B
-rw-r--r--
2016-01-06 05:47
CONTRIBUTING.md
1.2
KB
-rw-r--r--
2015-08-08 21:12
LICENSE
1.05
KB
-rw-r--r--
2017-04-15 17:25
README.md
2.42
KB
-rw-r--r--
2017-04-30 01:24
bower.json
742
B
-rw-r--r--
2017-04-30 02:01
component.json
345
B
-rw-r--r--
2016-01-06 05:25
gulpfile.js
1.77
KB
-rw-r--r--
2016-04-02 02:42
karma.conf.ci.js
4.65
KB
-rw-r--r--
2017-05-07 22:10
karma.conf.js
549
B
-rw-r--r--
2016-01-06 05:47
package.json
2.4
KB
-rw-r--r--
2021-02-04 21:24
stackframe-tests.ts
1.42
KB
-rw-r--r--
2016-04-02 02:40
stackframe.d.ts
1.53
KB
-rw-r--r--
2016-04-02 02:35
stackframe.js
3.78
KB
-rw-r--r--
2017-08-12 17:14
Save
Rename
var coveralls = require('gulp-coveralls'); var del = require('del'); var gulp = require('gulp'); var jshint = require('gulp-jshint'); var karma = require('karma'); var rename = require('gulp-rename'); var runSequence = require('run-sequence'); var sourcemaps = require('gulp-sourcemaps'); var uglify = require('gulp-uglify'); var sources = 'stackframe.js'; var minified = sources.replace('.js', '.min.js'); gulp.task('lint', function() { return gulp.src(sources) .pipe(jshint()) .pipe(jshint.reporter('default')) .pipe(jshint.reporter('fail')); }); gulp.task('test', function(done) { new karma.Server({ configFile: __dirname + '/karma.conf.js', singleRun: true }, done).start(); }); gulp.task('test-pr', ['copy', 'dist'], function(done) { new karma.Server({ configFile: __dirname + '/karma.conf.js', browsers: ['Firefox', 'Chrome_Travis'], singleRun: true }, done).start(); }); gulp.task('test-ci', ['copy', 'dist'], function(done) { new karma.Server({ configFile: __dirname + '/karma.conf.ci.js', singleRun: true }, done).start(); }); gulp.task('copy', function() { gulp.src(sources) .pipe(gulp.dest('dist')); }); gulp.task('dist', ['copy'], function() { return gulp.src(sources) .pipe(sourcemaps.init()) .pipe(uglify()) .pipe(rename(minified)) .pipe(sourcemaps.write('./')) .pipe(gulp.dest('dist')); }); gulp.task('clean', del.bind(null, ['build', 'coverage', 'dist'])); gulp.task('pr', ['lint', 'test-pr']); gulp.task('ci', ['lint', 'test-ci'], function() { gulp.src('./coverage/**/lcov.info') .pipe(coveralls()); }); gulp.task('default', ['clean'], function(cb) { runSequence('lint', ['copy', 'dist'], 'test', cb); });