Commit d3be1b9a authored by 何虹's avatar 何虹 💬

.

parent 5a317e99
...@@ -19,3 +19,12 @@ yarn-error.log* ...@@ -19,3 +19,12 @@ yarn-error.log*
*.njsproj *.njsproj
*.sln *.sln
*.sw? *.sw?
examples/
packages/
public/
# 忽略指定文件
vue.config.js
babel.config.js
*.map
\ No newline at end of file
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"name": "hs-sky-ui", "name": "hs-sky-ui",
"version": "0.1.2", "version": "0.1.2",
"description": "hs组件库", "description": "hs组件库",
"main": "dist/hs-sky-ui.umd.min.js", "main": "lib/hs-sky-ui.umd.min.js",
"keyword": "hscomponent hs-sky-ui", "keyword": "hscomponent hs-sky-ui",
"private": false, "private": false,
"scripts": { "scripts": {
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
"core-js": "^3.6.4", "core-js": "^3.6.4",
"echarts": "^4.7.0", "echarts": "^4.7.0",
"element-ui": "^2.13.1", "element-ui": "^2.13.1",
"hs-sky-ui": "^0.1.1",
"hswebapp2frame": "^1.1.7", "hswebapp2frame": "^1.1.7",
"jsoneditor": "^8.6.5", "jsoneditor": "^8.6.5",
"lodash": "^4.17.15", "lodash": "^4.17.15",
......
...@@ -3,9 +3,9 @@ import App from './App.vue' ...@@ -3,9 +3,9 @@ import App from './App.vue'
// import './packages/index' // import './packages/index'
import ElementUI from 'element-ui' import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css' import 'element-ui/lib/theme-chalk/index.css'
// import hsSkyUi from 'hs-sky-ui' import hsSkyUi from 'hs-sky-ui'
Vue.config.productionTip = false Vue.config.productionTip = false
// Vue.use(hsSkyUi) Vue.use(hsSkyUi)
Vue.use(ElementUI) Vue.use(ElementUI)
new Vue({ new Vue({
render: h => h(App) render: h => h(App)
......
...@@ -4,7 +4,7 @@ module.exports = { ...@@ -4,7 +4,7 @@ module.exports = {
// 部署应用包时的基本 URL,用法和 webpack 本身的 output.publicPath 一致 // 部署应用包时的基本 URL,用法和 webpack 本身的 output.publicPath 一致
publicPath: './', publicPath: './',
// 输出文件目录 // 输出文件目录
outputDir: 'dist', outputDir: 'lib',
// eslint-loader 是否在保存的时候检查 // eslint-loader 是否在保存的时候检查
lintOnSave: true, lintOnSave: true,
// 是否使用包含运行时编译器的 Vue 构建版本 // 是否使用包含运行时编译器的 Vue 构建版本
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment