├── .gitignore ├── src └── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const lita = require('lita') 2 | 3 | module.exports = function (source) { 4 | return lita(source) 5 | } 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lita-loader", 3 | "version": "1.0.3", 4 | "description": "Webpack loader for literary Javascript programming", 5 | "main": "src/index.js", 6 | "dependencies": { 7 | "lita": "^1.0.4" 8 | }, 9 | "devDependencies": {}, 10 | "scripts": { 11 | "test": "echo \"Error: no test specified\" && exit 1" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/are1000/lita-loader.git" 16 | }, 17 | "keywords": [ 18 | "literary", 19 | "javascript", 20 | "webpack", 21 | "loader" 22 | ], 23 | "author": "Artur Wojciechowski (http://iama.re)", 24 | "license": "MIT", 25 | "bugs": { 26 | "url": "https://github.com/are1000/lita-loader/issues" 27 | }, 28 | "homepage": "https://github.com/are1000/lita-loader#readme" 29 | } 30 | --------------------------------------------------------------------------------