Intern網站上的教程首先通過使用npm獲取實習生開始,但我下載了實習生源代碼的最新版本。 (我沒有使用NPM)和我的應用程序文件夾結構是這樣的如何將實習生添加到Dojo項目?
|myapp
|app
|tests
|unit
|functional
main.js
|third-party
|dojo-release-1.10.6
|intern-3.4.2
index.html
現在,在我的index.html我加在我的包的配置
packages: [
{ name: 'dojo', location: 'third_party/dojo-release-1.10.6-src/dojo' },
{ name: 'intern', location: 'third_party/intern-3.4.2' },
],
在此之後,我在哪裏以下放置intern.js?
將它放在'intern/intern.js'中,然後像'require(「intern/intern.js」)''一樣導入它... –