Skip to content

Commit

Permalink
Migrate lib => src
Browse files Browse the repository at this point in the history
  • Loading branch information
kern committed Oct 21, 2019
1 parent 891bd4d commit 158ba7c
Show file tree
Hide file tree
Showing 50 changed files with 8,085 additions and 3 deletions.
8,082 changes: 8,082 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"homepage": "https://github.com/kern/filepizza",
"scripts": {
"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": {
"type": "git",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/middleware/static.js → src/middleware/static.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var express = require('express')
var path = require('path')

var STATIC_PATH = path.resolve(__dirname, '../../static')
var STATIC_PATH = path.resolve(__dirname, '../static')

module.exports = express.static(STATIC_PATH)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const nib = require("nib");
const webpack = require('webpack')

module.exports = {
entry: "./lib/client",
entry: "./src/client",
target: "web",

output: {
Expand Down

0 comments on commit 158ba7c

Please sign in to comment.