Tagged Questions
2
votes
0answers
82 views
Javascript/CSS File locations for development branch vs production branch
I've set up my web server to follow the common git / web focused workflow for the most part.
So I have a dev branch in one folder as a subdomain and the master branch in my root folder / domain.
...
2
votes
2answers
161 views
Do I need the non-minified version of jQuery scripts in my site?
Answers to this question explain that for example jquery-1.5.1.min.js is a minified version of jquery-1.5.1.js and the latter is there so that I can read and analyze the script and the former is for ...
3
votes
3answers
366 views
Is there a tool to automatically minify all javascript files referenced in an html file at deployment time?
Is there a tool that will do the following at deployment time?
Find all javascript files referenced in <script> tags of an html document.
Minify the javascript files into 1 file.
Replace the ...
2
votes
2answers
715 views
Best practice to maintain minified files and deployment/development
I'm stuck in a bit of dilemma on how to get around this and was hoping someone would point me in the right direction.
I am trying to cut down on the size of css and javascript files to improve our ...
4
votes
1answer
270 views
Tools for automatic deployment of JavaScript, CSS and HTML?
I am looking for a solution to automate my project workflow a bit.
Let's say I have the following folder structure:
project
---- less
-------- project.less
---- css
-------- project.min.css
---- js
...
5
votes
2answers
837 views
deployment strategies, PHP + SVN
i just wanna discuss our deployment strategy and find discrepancies in it. the process goes like this
-> Development finishes for a particular release
-> All developers commit their files to trunk
...
0
votes
2answers
360 views
Nicer way to deploy a minified Chrome extension
When deploying an extension I follow various steps : copy to a temporary folder all the files, copy/paste back and forth the code to the on-line minifiers / obfuscators and create the zip to be ...
11
votes
13answers
2k views
What do you do to your JavaScript code before deployment?
Do you have a step in your deployment process that minifies JS? Do you have any sort of preprocessor for your JavaScript that allows you to leave in comments and console.logs and then have them ...
3
votes
4answers
507 views
Best packing strategy for js during continuous integration?
I need to pack all my js, but need to edit it going into source control.
is there a nice easy plugin for ccnet, or nant, that will allow me to pack my js, and store them in the same files on the way ...