Skip to content

Commit 3bbdbfe

Browse files
committed
refactor: rearrange files
1 parent 37fd83f commit 3bbdbfe

File tree

8 files changed

+4
-4
lines changed

8 files changed

+4
-4
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

scripts/webpack.base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = {
2424
}],
2525
include: [
2626
joinRoot('src'),
27-
joinRoot('__demo__'),
27+
joinRoot('demo'),
2828
],
2929
}],
3030
},

scripts/webpack.ghpages.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ const joinRoot = path.join.bind(path, __dirname, '..');
1010
module.exports = merge(baseConfig, {
1111
mode: 'production',
1212
entry: [
13-
joinRoot('__demo__/scripts/index.ts'),
13+
joinRoot('demo/scripts/index.ts'),
1414
],
1515
output: {
16-
path: joinRoot('.tmp'),
16+
path: joinRoot('ghpages'),
1717
filename: 'app.js',
1818
publicPath: '/',
1919
},
@@ -39,7 +39,7 @@ module.exports = merge(baseConfig, {
3939
'stylus-loader',
4040
],
4141
include: [
42-
joinRoot('__demo__'),
42+
joinRoot('demo'),
4343
],
4444
}],
4545
},

0 commit comments

Comments
 (0)