Skip to content

Commit

Permalink
update: 更新至 v4.0.0 版本
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoky committed Sep 17, 2020
1 parent 218ecc4 commit 238f0ee
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 28 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fe_korey/resume",
"version": "3.0.0",
"version": "4.0.0",
"description": "赵柯宇的web前端工程师简历",
"main": "dist/index.html",
"homepage": "https://resume.flqin.com",
Expand Down Expand Up @@ -52,7 +52,6 @@
"postcss-pxtorem": "^5.1.1",
"prettier": "^2.1.2",
"script-ext-html-webpack-plugin": "^2.1.3",
"style-ext-html-webpack-plugin": "^4.0.1",
"stylelint": "^13.7.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
Expand Down
6 changes: 3 additions & 3 deletions src/js/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default {
},
footer: ['Released under the MIT License', 'All Rights Reserved ', `Copyright © 2014-${new Date().getFullYear()} Korey Zhao`],
overview: {
infoList: ['28岁', '本科', '成都', '在职'],
infoList: ['29岁', '本科', '成都', '在职'],
quote: '生活是一种绵延不绝的渴望,渴望不断上升,变得更伟大而高贵。',
desList: ['我叫赵柯宇,前端工程师', '聚美优品(成都)电商&增长团队前端负责人', '[email protected]']
},
Expand Down Expand Up @@ -128,7 +128,7 @@ export default {
'六年前端开发经验,两年管理经验',
'实际主导开发过多平台项目(APP,PC,H5,小程序,快应用等),制定并规范团队协作模式',
'前端技术栈均有尝试,擅长组件开发及构建优化',
'自我驱动力强,著有webpack、vue等源码分析系列文章'
'自我驱动力强,写有webpack、vue等源码分析系列文章'
]
},
exp: {
Expand Down Expand Up @@ -301,7 +301,7 @@ export default {
},
footer: ['Released under the MIT License', 'All Rights Reserved ', `Copyright © 2014-${new Date().getFullYear()} Korey Zhao`],
overview: {
infoList: ['28years', 'B.S.', 'ChengDu', 'On Job'],
infoList: ['29years', 'B.S.', 'ChengDu', 'On Job'],
quote: 'Life is a kind of endless yearning, eager to continue to rise, become more great and noble.',
desList: ['I am Korey Zhao, FE engineer', 'Jumei(chengdu)E-commerce & growth team FE leader', '[email protected]']
},
Expand Down
8 changes: 3 additions & 5 deletions src/template/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<title>
web前端工程师简历
</title>
<title>web前端工程师简历</title>
<meta content="赵柯宇的web前端工程师个人简历,前端学习,前端开发" name="description" />
<meta content="web前端,FE,web前端个人简历,前端开发" name="keywords" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
Expand All @@ -16,7 +14,7 @@
<meta http-equiv="pragma" content="no-cache" />
</head>

<body id="app" style="display: none;">
<body id="app" style="display: none">
<!-- header -->
<header class="header">
<div class="title">
Expand Down Expand Up @@ -47,7 +45,7 @@
<div class="content">
<div class="info">
<div class="photo">
<img src="./../assets/hd_2019.jpg" alt="" />
<img src="./assets/hd_2019.jpg" alt="" />
</div>
<ul class="-list">
<li class="-item" v-for="item in overview.infoList">{{item}}</li>
Expand Down
13 changes: 4 additions & 9 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const WebpackBar = require('webpackbar');
const WebpackStylish = require('webpack-stylish');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const StyleExtHtmlWebpackPlugin = require('style-ext-html-webpack-plugin');
const ScriptExtHtmlWebpackPlugin = require('script-ext-html-webpack-plugin');
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
Expand All @@ -17,7 +16,7 @@ const config = {
},
output: {
path: path.resolve(__dirname, './dist'),
filename: _DEV_ ? 'bundle.js' : 'js/[name].[chunkhash:8].js',
filename: _DEV_ ? 'bundle.js' : '[name].[chunkhash:8].js',
publicPath: './'
},
module: {
Expand All @@ -38,8 +37,7 @@ const config = {
loader: 'url-loader',
options: {
limit: 10000,
name: 'assets/[name].[ext]',
publicPath: '../'
name: 'assets/[name].[ext]'
}
}
]
Expand All @@ -53,8 +51,8 @@ const config = {
favicon: 'src/assets/favicon.ico'
}),
new MiniCssExtractPlugin({
filename: _DEV_ ? 'css/[name].css' : 'css/[name].[contenthash:8].css',
chunkFilename: _DEV_ ? 'css/[name].css' : 'css/[name].[contenthash:8].css'
filename: _DEV_ ? 'css/[name].css' : '[name].[contenthash:8].css',
chunkFilename: _DEV_ ? 'css/[name].css' : '[name].[contenthash:8].css'
}),
new WebpackStylish(),
new WebpackBar()
Expand Down Expand Up @@ -93,9 +91,6 @@ if (_DEV_) {
chunks: 'initial',
test: [/vendors\.[a-z0-9]{8}\.js$/, /main\.[a-z0-9]{8}\.js$/]
}
}),
new StyleExtHtmlWebpackPlugin({
cssRegExp: /vendors\.[a-z0-9]{8}\.css$/
})
);
}
Expand Down
10 changes: 1 addition & 9 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1969,7 +1969,7 @@ class-utils@^0.3.5:
isobject "^3.0.0"
static-extend "^0.1.1"

clean-css@^4.2.1, clean-css@^4.2.3:
clean-css@^4.2.3:
version "4.2.3"
resolved "https://registry.npm.taobao.org/clean-css/download/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78"
integrity sha1-UHtd59l7SO5T2ErbAWD/YhY4D3g=
Expand Down Expand Up @@ -7514,14 +7514,6 @@ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
resolved "https://registry.npm.taobao.org/strip-json-comments/download/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
integrity sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=

style-ext-html-webpack-plugin@^4.0.1:
version "4.1.2"
resolved "https://registry.npm.taobao.org/style-ext-html-webpack-plugin/download/style-ext-html-webpack-plugin-4.1.2.tgz#6e05cda52d933adee1af62bbaf907f876dc00582"
integrity sha1-bgXNpS2TOt7hr2K7r5B/h23ABYI=
dependencies:
clean-css "^4.2.1"
debug "^4.1.1"

style-search@^0.1.0:
version "0.1.0"
resolved "https://registry.npm.taobao.org/style-search/download/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902"
Expand Down

0 comments on commit 238f0ee

Please sign in to comment.