2021-07-17 10:44:13 +09:00
2021-07-17 10:44:13 +09:00
2021-07-17 00:02:54 +09:00

UNO game written in JavaScript

For developers

Install webpack

This repo is compiled with webpack. So, first install webpack by

npm install webpack webpack-cli

Install style-loader and css-loader

To handle css files, style-loader and css-loader are required.

npm install style-loader css-loader

Config webpack

Open webpack.config.js and edit

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/i,
        use: ["style-loader", "css-loader"],
      },
    ],
  },
};

to use style-loader and css-loader for .css files.

Use webpack

npx webpack

This command will generate dist/main.js

Description
Uno game written in JavaScript which runs on html, browser
Readme 564 KiB
Languages
JavaScript 89.9%
SCSS 7.5%
HTML 2.6%