move all to src

beta
cybafelo 2020-04-20 10:18:14 +02:00
parent 59ad976761
commit cfd053dc11
5 changed files with 5130 additions and 0 deletions

2
src/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
node_modules
*.swp

2
src/README.md Normal file
View File

@ -0,0 +1,2 @@
[R3 v2.0]

5094
src/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

21
src/package.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "r3",
"version": "2.0.0",
"description": "",
"private": true,
"dependencies": {
"webpack": "^4.41.6"
},
"devDependencies": {
"gulp": "^4.0.2",
"webpack-cli": "^3.3.11"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --webpack-config.js",
"watch": "webpack --webpack-config.js --watch"
},
"keywords": [],
"author": "",
"license": "ISC"
}

11
src/webpack.config.js Normal file
View File

@ -0,0 +1,11 @@
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'r3.js',
path: path.resolve(__dirname, 'dist')
},
mode: 'development',
devtool: 'inline-source-map'
}