mirror of
https://github.com/responsively-org/responsively-app
synced 2024-11-10 14:54:12 +00:00
Build setup tweaks
This commit is contained in:
parent
195c168eea
commit
9fcf83f691
3 changed files with 2637 additions and 871 deletions
|
@ -26,6 +26,7 @@ const autoprefixer = require('gulp-autoprefixer'),
|
|||
themeYaml = './theme.yml',
|
||||
year = new Date().getFullYear(),
|
||||
yaml = require('yamljs');
|
||||
const server = require('gulp-server-livereload');
|
||||
|
||||
let copyDeps = yaml.load(copyDepsYaml);
|
||||
let theme = yaml.load(themeYaml);
|
||||
|
@ -335,13 +336,18 @@ gulp.task('deps', async (done) => {
|
|||
|
||||
// watch files for changes and reload
|
||||
gulp.task('serve', function (done) {
|
||||
browserSync({
|
||||
/*browserSync({
|
||||
port: 4001,
|
||||
server: {
|
||||
baseDir: './dist',
|
||||
index: "index.html"
|
||||
}
|
||||
});
|
||||
});*/
|
||||
gulp.src('./dist')
|
||||
.pipe(server({
|
||||
livereload: true,
|
||||
open: true
|
||||
}));
|
||||
done();
|
||||
});
|
||||
|
||||
|
|
3453
website/package-lock.json
generated
3453
website/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -23,46 +23,47 @@
|
|||
"homepage": "https://manojvivek.github.io/responsively-app",
|
||||
"dependencies": {
|
||||
"@fancyapps/fancybox": "3.5.2",
|
||||
"@tanem/svg-injector": "~8.0.12",
|
||||
"@tanem/svg-injector": "^8.0.49",
|
||||
"aos": "~2.3.4",
|
||||
"autosize": "~4.0.2",
|
||||
"bootstrap": "~4.3.1",
|
||||
"clipboard": "~2.0.4",
|
||||
"countup.js": "~2.0.2",
|
||||
"flatpickr": "~4.6.1",
|
||||
"clipboard": "^2.0.6",
|
||||
"countup.js": "^2.0.5",
|
||||
"flatpickr": "^4.6.3",
|
||||
"flickity": "~2.2.0",
|
||||
"gh-pages": "^2.2.0",
|
||||
"inter-ui": "^3.9.0",
|
||||
"ion-rangeslider": "~2.3.0",
|
||||
"gulp-server-livereload": "^1.9.2",
|
||||
"inter-ui": "^3.13.1",
|
||||
"ion-rangeslider": "^2.3.1",
|
||||
"isotope-layout": "~3.0.6",
|
||||
"jarallax": "^1.11.0",
|
||||
"jquery": "~3.5.0",
|
||||
"jarallax": "^1.12.1",
|
||||
"jquery": "^3.5.1",
|
||||
"jquery-countdown": "~2.2.0",
|
||||
"plyr": "~3.5.4",
|
||||
"plyr": "^3.5.10",
|
||||
"popper.js": "~1.15.0",
|
||||
"prismjs": "^1.17.1",
|
||||
"prismjs": "^1.20.0",
|
||||
"scrollmonitor": "~1.2.4",
|
||||
"smartwizard": "~4.3.1",
|
||||
"smooth-scroll": "~16.1.0",
|
||||
"twitter-fetcher": "~18.0.2",
|
||||
"typed.js": "~2.0.9"
|
||||
"smooth-scroll": "^16.1.3",
|
||||
"twitter-fetcher": "^18.0.4",
|
||||
"typed.js": "^2.0.11"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.5.5",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
|
||||
"@babel/preset-env": "^7.5.5",
|
||||
"@babel/core": "^7.9.6",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
|
||||
"@babel/preset-env": "^7.9.6",
|
||||
"babel-plugin-transform-es2015-modules-strip": "~0.1.1",
|
||||
"babel-plugin-transform-strict-mode": "~6.24.1",
|
||||
"browser-sync": "~2.26.7",
|
||||
"del": "^5.1.0",
|
||||
"eslint": "^6.3.0",
|
||||
"eslint-config-airbnb-base": "^14.0.0",
|
||||
"eslint": "^6.8.0",
|
||||
"eslint-config-airbnb-base": "^14.1.0",
|
||||
"eslint-plugin-import": "~2.18.0",
|
||||
"gulp": "~4.0.2",
|
||||
"gulp-autoprefixer": "^7.0.0",
|
||||
"gulp-autoprefixer": "^7.0.1",
|
||||
"gulp-clean-css": "~4.2.0",
|
||||
"gulp-eslint": "~6.0.0",
|
||||
"gulp-file-include": "^2.1.0",
|
||||
"gulp-file-include": "^2.2.2",
|
||||
"gulp-htmlmin": "^5.0.1",
|
||||
"gulp-minify-inline": "^1.1.0",
|
||||
"gulp-newer": "~1.4.0",
|
||||
|
@ -70,11 +71,11 @@
|
|||
"gulp-sass": "~4.0.2",
|
||||
"gulp-sourcemaps": "~2.6.1",
|
||||
"node-sass-css-importer": "~0.0.3",
|
||||
"rollup": "^1.20.3",
|
||||
"rollup": "^1.32.1",
|
||||
"rollup-plugin-babel": "~4.3.2",
|
||||
"rollup-plugin-commonjs": "^10.1.0",
|
||||
"rollup-plugin-node-resolve": "~5.2.0",
|
||||
"rollup-plugin-uglify": "~6.0.1",
|
||||
"rollup-plugin-uglify": "^6.0.4",
|
||||
"yamljs": "~0.3.0"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue