joni2back / angular-filemanager

JavaScript File Manager Material Design Folder Explorer Navigator Browser Manager in AngularJS with CSS3 Responsive (with FTP in PHP / Java / Node)
https://joni2back.github.io/angular-filemanager/
MIT License
1.76k stars 577 forks source link

How to repackage after making changes? #318

Closed enayetn closed 6 years ago

enayetn commented 7 years ago

I'd like to make some updates to suit my needs, but I am not sure how to repackage the app as a single minified JS file, as you have it in the dist folder. Could you point me in the right direction?

Thanks!

durasj commented 6 years ago

Hi @enayetn, afaik, you need to install node&npm, yarn and gulp and then do yarn install and gulp build.

If I remember correctly from the top of my head.

joni2back commented 6 years ago

Hey @enayetn as @durasj told you, you change the files then do the build (in order to minify the files)

You first need to do a yarn install (or npm install in order to get all dev dependencies)

then execute the build using the following command: gulp build || node node_modules/gulp/bin/gulp.js build

enayetn commented 6 years ago

Perfect, thanks!