├── .npmignore
├── README.md
├── .gitignore
├── index.js
├── examples
├── simple
│ ├── src
│ │ ├── webpack.config.js
│ │ ├── package.json
│ │ ├── index.js
│ │ └── package-lock.json
│ └── index.html
└── index.html
├── src
└── Loader.js
├── package.json
└── LICENSE
/.npmignore:
--------------------------------------------------------------------------------
1 | /examples
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # wdr-loader
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | dist
4 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | module.exports = require('./src/Loader.js');
--------------------------------------------------------------------------------
/examples/simple/src/webpack.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | entry: './index.js',
3 | output: {
4 | filename: 'render.js',
5 | path: __dirname + '/../dist'
6 | }
7 | };
--------------------------------------------------------------------------------
/examples/simple/index.html:
--------------------------------------------------------------------------------
1 | {
2 | "title": "WebDataRender",
3 | "description": "This page is a valid JSON. Check out the source!",
4 | "render": "