1.0.5 • Published 10 years ago

grunt-inline-yytemp v1.0.5

Weekly downloads
18
License
-
Repository
-
Last release
10 years ago

grunt-inline-yytemp

Inject external temp to your js.

Getting Started

This plugin requires Grunt.

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-inline-yytemp --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-inline-yytemp');

The "inline_yytemp" task

Overview

In your project's Gruntfile, add a section named inline_yytemp to the data object passed into grunt.initConfig().

grunt.initConfig({
  inline_yytemp: {
    your_target: {
      files:{
      	'dist/': ['src/**/*.js']
      }
    },
  },
})

Options

options.verbose

Type: Boolean Default value: false

Set true to see more logs about what is happenning.

Usage Examples

temp.js file:

<%var data;%>
<ul>
<%for(var i=0,len=list.length;i<len&&i<15;i++){%>
    <%
        data=list[i];
    %>
    <li class="quickEnterGame<%=i%2==0?' odd':''%><%=i==0?' on':''%>" g_data="<%=data.gameId%>|TJ<%=i+1%>">
       
    </li>
<%}%>
</ul>

target.js file:

var test=__inline("./temp.js");

读取外链模板文件__inline("./index.js")
读取内联模板__inlineTemp('<div><%=ddd%></div>');

Release History

  • 1.0.0 - Initial release

License

Copyright (c) 2014 sahibinden.com. Licensed under the MIT license.

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago