我正在ES6
通过babel
Transpiler和preset-es2015
插件以及semantic-ui
样式使用(JavaScript)语法编写一个新应用程序。
index.js
import * as stylesheet from '../assets/styles/app.scss';
import * as jquery2 from '../dist/scripts/jquery.min';
import * as jquery3 from '../node_modules/jquery/dist/jquery.min';
console.log($('my-app'));
index.html
<!DOCTYPE html>
<html lang="fr">
<head>
<body>
<script src="dist/app.js"></script>
</body>
</html>
项目结构
.
├── app/
│ ├── index.js
├── assets/
├── dist/
│ ├── scripts/
│ │ ├── jquery.min.js
├── index.html
├── node_modules/
│ ├── jquery/
│ │ ├── dist/
│ │ │ ├── jquery.min.js
├── package.json
└── tests/
package.json
…
"scripts": {
"build:app": "browserify -e ./app/index.js -o ./dist/app.js",
"copy:jquery": "cpy 'node_modules/jquery/dist/jquery.min.js' ./dist/scripts/",
…
},
"devDependencies": {
"babel-core": "6.3.x",
"babel-preset-es2015": "6.3.x",
"babelify": "7.2.x",
"cpy": "3.4.x",
"npm-run-all": "1.4.x",
"sassify": "0.9.x",
"semantic-ui": "2.1.x",
…
},
"browserify": {
"transform": [
[ "babelify", { "presets": [ "es2015"]}],
[ "sassify", { "auto-inject": true}]
]
}
题
使用经典<script>
标签导入jquery
可以很好地工作,但是我正在尝试使用ES6语法。
- 如何导入
jquery
才能semantic-ui
使用ES6导入语法? - 我应该从
node_modules/
目录中导入还是从我的目录dist/
中复制所有内容?
dist
是没有意义的,因为那是带有生产就绪应用程序的分发文件夹。构建应用程序应使用节点模块内部的内容,并将其添加到dist文件夹(包括jQuery)中。