remove example top-level dir

This commit is contained in:
Fabio Berger 2018-03-09 11:00:47 +01:00
parent e4f90996af
commit cc73f72d13
46 changed files with 29 additions and 31 deletions

View File

@ -4,17 +4,15 @@
"private": true,
"description":
"An example app using react-docs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "tslint --project . 'example/ts/**/*.ts' 'example/ts/**/*.tsx'",
"lint": "tslint --project . 'ts/**/*.ts' 'ts/**/*.tsx'",
"build": "tsc",
"build:example": "NODE_ENV=production webpack",
"build:watch": "tsc -w",
"clean": "shx rm -rf lib",
"clean": "shx rm -rf lib; shx rm -f public/bundle*",
"dev": "webpack-dev-server --open",
"deploy_example":
"npm run build:example; aws s3 sync ./example/public/. s3://react-docs-example --profile 0xproject --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers"
"npm run build:example; aws s3 sync ./public/. s3://react-docs-example --profile 0xproject --region us-east-1 --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers"
},
"author": "Fabio Berger",
"license": "Apache-2.0",

View File

@ -17,5 +17,5 @@
"pretty": true,
"strict": true
},
"include": ["./example/ts/**/*"]
"include": ["./ts/**/*"]
}

View File

@ -2,22 +2,22 @@ const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: ['./example/ts/index.tsx'],
entry: ['./ts/index.tsx'],
output: {
path: path.join(__dirname, '/example/public'),
path: path.join(__dirname, '/public'),
filename: 'bundle.js',
chunkFilename: 'bundle-[name].js',
publicPath: '/'
publicPath: '/',
},
devtool: 'source-map',
resolve: {
modules: [path.join(__dirname, '/example/ts'), 'node_modules'],
modules: [path.join(__dirname, '/ts'), 'node_modules'],
extensions: ['.ts', '.tsx', '.js', '.jsx', '.json', '.md'],
alias: {
ts: path.join(__dirname, '/example/ts'),
less: path.join(__dirname, '/example/less'),
md: path.join(__dirname, '/example/md')
}
ts: path.join(__dirname, '/ts'),
less: path.join(__dirname, '/less'),
md: path.join(__dirname, '/md'),
},
},
module: {
rules: [
@ -26,31 +26,31 @@ module.exports = {
loader: 'source-map-loader',
exclude: [
// instead of /\/node_modules\//
path.join(process.cwd(), 'node_modules')
]
path.join(process.cwd(), 'node_modules'),
],
},
{
test: /\.tsx?$/,
loader: 'awesome-typescript-loader'
loader: 'awesome-typescript-loader',
},
{
test: /\.css$/,
loaders: ['style-loader', 'css-loader']
loaders: ['style-loader', 'css-loader'],
},
{
test: /\.less$/,
loader: 'style-loader!css-loader!less-loader',
exclude: /node_modules/
exclude: /node_modules/,
},
{
test: /\.json$/,
loader: 'json-loader'
loader: 'json-loader',
},
{
test: /\.md$/,
use: 'raw-loader'
}
]
use: 'raw-loader',
},
],
},
devServer: {
port: 3000,
@ -64,20 +64,20 @@ module.exports = {
from: /.*$/,
to: function() {
return 'index.html';
}
}
]
},
contentBase: path.join(__dirname, '/example/public')
},
],
},
contentBase: path.join(__dirname, '/public'),
},
plugins:
process.env.NODE_ENV === 'production'
? [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(process.env.NODE_ENV)
}
})
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
},
}),
]
: []
: [],
};