-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a004ef
commit 4acc631
Showing
1,619 changed files
with
2,346 additions
and
2,307 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ dist | |
.eslintignore | ||
.browserlistrc | ||
.editorconfig | ||
*.ejs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,6 @@ module.exports = { | |
// }, | ||
// "aaax", | ||
// ], | ||
// "transform-vue-jsx", | ||
'@babel/plugin-syntax-jsx', | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
const path = require('path'); | ||
|
||
// path.resolve里的参数不管结尾带不带/,最终处理的路径最后结尾都不带/ | ||
// 即path.resolve(__dirname, '../dist')和path.resolve(__dirname, '../dist/'),最终生成的路径是/xx/xx/dist | ||
module.exports = { | ||
porjectRootDir: path.resolve(__dirname, '../'), | ||
distDir: path.resolve(__dirname, '../dist'), | ||
iconsSvgDir: path.resolve(__dirname, '../packages/icons-svg/dist/'), | ||
iconsVueDir: path.resolve(__dirname, '../packages/icons-vue/dist/'), | ||
iconsSvgDistDir: path.resolve(__dirname, '../packages/icons-svg/dist'), | ||
iconsSvgEntryName: 'index.js', | ||
iconsSvgEntryPath: path.resolve(__dirname, '../packages/icons-svg'), | ||
iconsSvgToAsnDir: path.resolve(__dirname, '../packages/icons-svg/asn'), | ||
iconsVueDistDir: path.resolve(__dirname, '../packages/icons-vue/dist'), | ||
iconsVueIconsPath: path.resolve(__dirname, '../packages/icons-vue/icons'), | ||
iconsVueEntryPath: path.resolve(__dirname, '../packages/icons-vue'), | ||
iconsVueEntryName: 'index.js', | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.