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, "private": true,
"description": "description":
"An example app using react-docs", "An example app using react-docs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": { "scripts": {
"lint": "tslint --project . 'example/ts/**/*.ts' 'example/ts/**/*.tsx'", "lint": "tslint --project . 'ts/**/*.ts' 'ts/**/*.tsx'",
"build": "tsc", "build": "tsc",
"build:example": "NODE_ENV=production webpack", "build:example": "NODE_ENV=production webpack",
"build:watch": "tsc -w", "build:watch": "tsc -w",
"clean": "shx rm -rf lib", "clean": "shx rm -rf lib; shx rm -f public/bundle*",
"dev": "webpack-dev-server --open", "dev": "webpack-dev-server --open",
"deploy_example": "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", "author": "Fabio Berger",
"license": "Apache-2.0", "license": "Apache-2.0",

View File

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

View File

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