- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 grunt usemin 插件来编译我的 requirejs 文件。在我的 html 页面中,我有以下代码段:
<!-- build:js ../dist/app.min.js -->
<script data-main="js/modules/app" src="../lib/js/requirejs/requirejs.js"></script>
<!-- endbuild -->
这是我的 grunt 文件:
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: '<json:package.json>',
//run jshint, the busterjs tests and compile the handlbar templates every time a file changed
watch: {
files: ['Gruntfile.js', 'dev/js/*.js', 'test/**/*.js', 'dev/templates/*.hbs'],
tasks: ['jshint', 'buster', 'handlebars']
},
//hint all the js files
jshint: {
files: ['Gruntfile.js', 'dev/js/*.js', 'test/*.js'],
options: {
camelcase: true,
curly: true,
immed: true,
newcap: true,
noarg: true,
noempty: true,
nonew: true,
quotmark: 'single',
trailing: true,
maxdepth: 3,
browser: true,
asi: true,
debug: true,
eqnull: true
}
},
handlebars: {
compile: {
files: {
'dev/templates/templates.js': 'dev/templates/*.hbs'
}
}
},
//
gruntContribCopy: {
dist: {
files: {
'dist/index.html': 'dev/index.html'
}
}
},
//use the original index.html, as this the task which collect the files to compile
// relative to the index.html
'useminPrepare': {
html: 'dev/index.html'
},
// use the copy in dist folder as this is where it replace the path to file relative to the passed file
usemin: {
html: ['dist/index.html'],
css: ['dist/*.css']
},
//just uglify the concatenated the files
uglify: {
dist: {
files: {
'dist/prod.min.js': 'dist/prod.min.js',
'dist/lib.min.js': 'dist/lib.min.js'
}
}
},
//create md5 file names for all minified sources
md5: {
compile: {
files: {
'dist': 'dist/*.min.*'
},
//overide the pathes in the index.html with the new md5 name
options: {
callback: function(newPath, oldPath, content) {
var fs = require('fs')
fs.unlink(oldPath);
var file = fs.readFileSync('dist/index.html', 'utf8');
var replacedData = file.replace(oldPath.replace('dist/', ''), newPath.replace('dist/', ''));
fs.writeFileSync('dist/index.html', replacedData);
}
}
}
},
//create a manifest file for all js and css files
manifest: {
generate: {
src: [
'*.js',
'*.css'
],
options: {
basePath: 'dist/',
network: ['*', 'http://*', 'https://*']
}
}
},
buster: {
test: {
config: 'test/buster.js'
},
server: {
port: 1111
}
},
bower: {
install: {
//just run 'grunt bower:install' and you'll see files from your Bower packages in lib directory
}
},
connect: {
server: {
options: {
port: 9001,
keppalive: true
}
}
},
requirejs: {
}
});
grunt.loadNpmTasks('grunt-buster');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.renameTask('copy', 'gruntContribCopy');
grunt.loadNpmTasks('grunt-usemin');
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-mincss');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-manifest');
grunt.loadNpmTasks('grunt-md5');
grunt.loadNpmTasks('grunt-contrib-handlebars');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-bower-task');
grunt.registerTask('dist',
['gruntContribCopy', 'useminPrepare', 'usemin', 'requirejs', 'concat', 'uglify', 'md5', 'manifest']);
};
当我运行 dist
任务时,一切正常,但 requirejs 任务退出:
Running "requirejs:out" (requirejs) task
Error: Missing either a "name", "include" or "modules" option
at Function.build.createConfig (/Users/akoeberle/grunt_example/node_modules/grunt-contrib-requirejs/node_modules/requirejs/bin/r.js:22690:19)
但就在 usmin 任务记录之前:
requirejs: {
out: 'dist/app.min.js',
name: 'dev/js/modules/app'
}
据我所知,usemin 任务正在使用我的 html 页面中构建 block 中的数据更新 gruntConfig
,它似乎找到并设置了 requirejs 的选项。那么这里出了什么问题?
最佳答案
似乎是 bug在 usemin 中,因为当前版本不支持 requirejs 任务的多任务版本。
关于javascript - 咕噜 usemin 和 requirejs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14247817/
如何使用 requirejs 导入 recaptcha。我已经尝试了几件事,但没有任何效果。 我需要这样做,以便能够在加载后使用 reCaptcha 的渲染方法自行渲染它。 require.confi
我正在尝试将 OpenLayers 库与 RequireJS 一起使用。 问题是,OpenLayers 一直处于“未定义”状态,即使它被列为我的模块的唯一依赖项: define(['OpenLayer
我正在尝试使用 gulp-requirejs构建一个演示项目。我希望结果是一个包含所有 js 依赖项和模板的单个文件。这是我的 gulpfile.js var gulp = require('gulp
没有 Require.js 就可以在浏览器控制台中调用全局对象,例如 app app.movies 当我将代码包装在 RequireJS 模块中时,如何在浏览器控制台中访问模块中的数据?我会发现这有助
这个问题有 3 个部分。我有两个模块 a 和 b。 如何在最初需要 b 后重新定义它? 如果 a 依赖于 b,我该如何更新 a 以使用新的 b? 如何找到所有依赖于 b 的模块并更新它们? 例如;
我正在尝试找到一种将 Backbone-relational 子模型与 RequireJS 一起使用的方法,其中子模型与 super 模型位于不同的文件中。 例如: // app.js define(
使用 require.js (r.js) 优化 js 代码时,将所有 js 源代码复制到目标目录(dir 属性)。 有没有办法(一些配置)来防止 requirejs 复制源文件? 最佳答案 如果添加
main.js 文件中的代码如下: phantom.injectJs("libs/require-1.0.7.js"); require.config( {
我在 require-config.js 中配置了一些路径,如下所示: var require = { baseUrl: '/javascript', paths: {
我正在重构一个大型 javascript 代码库以使用 RequireJS。不幸的是,我正在处理的许多文件都不是面向对象的,并且在不进行重大修改的情况下无法返回对象。是否有更有效的方法让“依赖”模块访
我是 RequireJS 的新手,我对加载顺序感到困惑。 我有一个全局项目配置,需要在位于 js/app/* 的模块之前加载。 这是我的结构: index.html config.js js/
我已经使用 requireJS 设置了一个 Angular 应用程序。在部署之前,我将所有内容捆绑到一个唯一的文件中。通常,外部库没有 requireJS“定义”包装器。 例如Angular Para
假设我有一个如下所示的模块: define(['jquery', 'actions', 'util', 'text!../templates/dialog.html!strip', 'text!../
如何使用 grunt-contrib-requirejs配置或什至r.js Config不缩小特定文件。 我可以使用optimize: 'none'选项禁用所有文件的缩小。但我不知道如何对单个文件禁用
好吧,我已经知道你应该像这样使用 RequireJS 配置路径 require.config({ paths: { name: 'value' } }); 并这样调用它。 requir
我希望能够有选择地定义一个模块,然后在我的代码中使用或不使用它。我正在考虑的特殊情况是在调试/测试环境中加载模拟/ stub 模块,但不是在我上线时加载。这是示例: 在 html 文件中,可以选择加载
我为构建过程创建了一个任务,其中 requirejs 作为它的子任务之一,并且在 requirejs 之后几乎没有其他任务。该任务在运行 requirejs 后停止,即使使用详细信息也不会抛出错误。任
我想创建一个可以从我的 RequireJS 项目中的任何模块访问的变量。 例如,在初始化时我想设置: this.myVar = 123; 并且能够在我的 RequireJS 项目内部(但不是外部)的任
我正在使用 TypeScript、Backbone 和 Mustache 编写网络应用程序。我想使用 Requirejs 进行依赖加载。 我还在使用 TypeScript 的 Web Essentia
我正在尝试创建一个节点样板,并尝试创建一个任务来运行 Jasmine 测试。我的 Gruntfile.js 中有以下配置: jasmine: { src : ['static/test/spec/
我是一名优秀的程序员,十分优秀!