git clone https://github.com/matharumanpreet00/Tarot-Tanks-Web-Game.git
cd tarot-tanks-web-game
npm installnpm startIf you need to access from a remote device (such as a smartphone on the same network), just LOCALHOST=false npm start and your site will be accessible via your IP (which will be output on the terminal at launch).
The ./build directory is ignored by git, it will contain a dist directory which holds the distribution version of your website (the one that you will ship once built).
All the build tasks will create a built version of the project in the ./build/dist folder, cleaning it before making the build.
npm run buildnpm run build-prodoptimized / uglified versionnpm run build-prod-allwill build:- production version (optimized / uglified)
- a debuggable version accessible at
/devtoolsshipping all the sourcemaps, to ease sharing transpiled source code
npm run serve-dist will serve your ./build/dist folder at http://localhost:3000 so that you could test the built version you just made.
- eslint is running while you're developping, check your console for errors
- you can also launch it via
npm run lint - see
.eslintrcfor the configuration (currently, this project uses the airbnb presets - if you find it to restrictive, just remove"extends": "airbnb-base"in the.eslintrc)
You can customize the behavior of the scripts by specifying environments vars:
NODE_ENVby default atdevelopment,NODE_ENV=productionwhen younpm run build-prodLINTER=falsewill disable the linter (enabled by default, ex:LINTER=false npm start)STATS=truewill writestats.jsonprofiling file on disk from webpack at build (disabled by default, ex:STATS=true npm run build)FAIL_ON_ERROR=truewill break the build if any errors occurs (useful for CIs such as travis - atfalsein dev-server, attruewhen building)LOCALHOST=falseto access via IP from other devices on the same network (ex:LOCALHOST=false npm start- defaulttrue)DEVTOOLS: By default atnull. Used internally bynpm run build-prod-all(you may not need that if you don't do OSS)
The main image loaders are declared in the webpack config so that when you require('./foo.png') or use the helper url('./bar.gif') in your .scss files, at build time, those images will automatically be:
- copied into
/build/dist/assets
First version, using webpack1.
Copyright 2017 © Christophe Rosset
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 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.