Socket
Book a DemoInstallSign in
Socket

gulp-adwords

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-adwords

Validates banner ads for upload to the AdWords network.

0.4.0
latest
npmnpm
Version published
Weekly downloads
5
Maintainers
1
Weekly downloads
 
Created
Source

gulp-adwords

Validates banner ads for upload to the AdWords network. Based on the Adwords HTML5 Validator.

#Getting started

npm install gulp-adwords

#Example

var gulp = require('gulp'),
	adwords = require('gulp-adwords')

gulp.task('default', function() {
	gulp.src('./banner/**/*')
		.pipe(adwords({verbose:true, filesize:150, name:'Banner', environment:'adwords'}))
})

#Custom Tests

You may include custom tests. The test function will be given the html as a string as well as the files found in an array.

var gulp = require('gulp'),
	adwords = require('gulp-adwords')

var tests = [
	{
		test: function(html, files) {
			return false  //will fail
		},
		message: 'Message to display if the test fails'
	}
]

gulp.task('default', function() {
	gulp.src('./banner/**/*')
		.pipe(adwords({customTests: tests}))
})

#Options
verbose - Toggles verbose logging. Defaults to false.
filesize - Sets the max filesize for FILESIZE_CHECK. Defaults to 150.
name - Sets the name displayed in the log. If none is set, uses the title of the html page. Defaults to undefined.
environment - Sets the environment for GWD_ENVIRONMENT_CHECK if using Google Web Designer. Valid environments are adwords, doubleclick, admob and default. Defaults to adwords.
customTests - Add custom tests
complete - Function to call on complete. Gets passed an array of errors, if any.

#Licence
Copyright (c) 2015 Red Lion Canada

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

gulp

FAQs

Package last updated on 09 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.