Skip to content

Instantly share code, notes, and snippets.

View gantoine's full-sized avatar
💭
😸

Georges-Antoine Assi gantoine

💭
😸
View GitHub Profile
@gantoine
gantoine / webpack.config.js
Last active April 9, 2018 20:18
A simple Webpack configuration file
import { resolve } from 'path';
module.exports = env => {
const config = {
context: resolve('src/js'),
entry: {
main: ['babel-polyfill', './app.js'],
},
output: {
path: resolve('public/dist'),
@gantoine
gantoine / postcss.config.js
Created April 9, 2018 20:09
The contents of a simple postcss.config.js file, to require autoprefixer
module.exports = {
plugins: [
require('autoprefixer')
]
}
@gantoine
gantoine / style.webpack.complete.js
Created April 9, 2018 20:28
A Webpack configuration file with style loading
import { resolve } from 'path';
import ExtractTextPlugin from 'extract-text-webpack-plugin';
const cssLoaders = [
{ loader: 'css-loader' },
{ loader: 'sass-loader' },
{ loader: 'postcss-loader' },
];
const devLoaders = [{ loader: 'style-loader' }].concat(cssLoaders);
@gantoine
gantoine / gameindex.json
Created August 8, 2023 16:55
Translation of GameIndex.dbf to JSON
This file has been truncated, but you can view the full file.
[
{
"Serial": "SLES-55671",
"Name": "Fifa '14",
"Region": "PAL"
},
{
"Serial": "SLES-55672",
"Name": "Fifa '14",
"Region": "PAL"