Migrate lib => src

pull/106/head
Alex Kern 6 years ago
parent 891bd4dada
commit 158ba7cae0

8082
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -9,7 +9,7 @@
"homepage": "https://github.com/kern/filepizza", "homepage": "https://github.com/kern/filepizza",
"scripts": { "scripts": {
"start": "node ./dist/index.js", "start": "node ./dist/index.js",
"build": "babel lib --ignore __tests__,__mocks__ --out-dir dist && webpack -p ./lib/client" "build": "babel src --ignore __tests__,__mocks__ --out-dir dist && webpack -p ./src/client"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

@ -1,6 +1,6 @@
var express = require('express') var express = require('express')
var path = require('path') var path = require('path')
var STATIC_PATH = path.resolve(__dirname, '../../static') var STATIC_PATH = path.resolve(__dirname, '../static')
module.exports = express.static(STATIC_PATH) module.exports = express.static(STATIC_PATH)

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Before

Width:  |  Height:  |  Size: 157 KiB

After

Width:  |  Height:  |  Size: 157 KiB

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 68 KiB

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 78 KiB

@ -2,7 +2,7 @@ const nib = require("nib");
const webpack = require('webpack') const webpack = require('webpack')
module.exports = { module.exports = {
entry: "./lib/client", entry: "./src/client",
target: "web", target: "web",
output: { output: {

Loading…
Cancel
Save