https://mppanayotov-tomorrowland-twn.surge.sh
Front-end tool for task automation.
Use bash terminal (default terminal on OSX and Linux, GitBash on Windows).
- Latest version of NodeJS (min v6.0.0)
- Latest version of any of the following package managers
In the root directory of the project run:
npm install
or
yarn install
If for some reason, NPM/Yarn throws errors and does not want to install the dependencies, please see https://goo.gl/iSz4w8.
TL;DR
Run
npm cache clean
If that does not fix the issue, manually remove everything in the ~/AppData/Roaming/npm-cache
folder.
MAC/Linux users should try and find another way to delete this folder's contents because they do not have access to this folder by default.
Then run the install script again.
If you are using OSX, you need to run the following (only once):
brew update
brew install libtool automake autoconf nasm
brew reinstall libpng
If you are using linux environment, you need to run the following (only once):
sudo apt-get install libtool automake autoconf nasm
To start the project in development mode, run:
npm start
or
yarn start
If you want to serve the files via your local server instead of the Browsersync server, run the start command and supply the development URL argument:
npm start -- --dev-url "http://your-server.url/path/to/project"
or
yarn start -- --dev-url "http://your-server.url/path/to/project"
To build the project, run:
npm run build
To build the project for production environment (e.g. minimize bundles css and js files and optimize images), run:
npm run prod
Responsive mixin disclaimer:
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.