Skip to content

Commit

Permalink
Merge pull request #55 from JustalK/dev
Browse files Browse the repository at this point in the history
[FEATURE] Adding the resume page and increasing tests
  • Loading branch information
JustalK committed Nov 18, 2020
2 parents 3806b57 + fe808ae commit 3cfd1c1
Show file tree
Hide file tree
Showing 754 changed files with 201,805 additions and 106 deletions.
9 changes: 5 additions & 4 deletions config/base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,16 @@ module.exports = {
new StyleLintPlugin({
fix: true,
files: [
'src/**/*.{css,sss,less,scss,sass}',
'src/**/**/*.{css,sss,less,scss,sass}'
'src/assets/*.{css,sss,less,scss,sass}',
'src/assets/**/*.{css,sss,less,scss,sass}'
]
}),
new CopyPlugin({
patterns: [
{ from: 'src/assets/imgs', to: 'assets/imgs' },
{ from: 'src/assets/fonts', to: 'assets/fonts' },
{ from: 'src/assets/favicon', to: 'assets/favicon' }
{ from: 'src/assets/favicon', to: 'assets/favicon' },
{ from: 'src/libs', to: 'libs' }
],
}),
new webpack.DefinePlugin({
Expand Down Expand Up @@ -88,7 +89,7 @@ module.exports = {
},
{
test: /\.less$/,
exclude: /node_modules/,
exclude: [ '/node_modules/', '/src/libs/'],
use: [ 'style-loader', 'css-loader', {
loader: 'postcss-loader',
options: {
Expand Down
70 changes: 70 additions & 0 deletions dev/90e0a0bbe38ff6cb0a20.worker.js

Large diffs are not rendered by default.

309 changes: 237 additions & 72 deletions dev/index.js

Large diffs are not rendered by default.

Loading

0 comments on commit 3cfd1c1

Please sign in to comment.