Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-google-site-verification

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-google-site-verification

Generate Google site verifications on the fly.

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9
decreased by-18.18%
Maintainers
1
Weekly downloads
 
Created
Source

grunt-google-site-verification

Greenkeeper badge

Generate Google site verifications on the fly.

Build Statusnpm version

NPM

Getting Started

This plugin requires Grunt ~0.4.5

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-google-site-verification --save-dev

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

grunt.loadNpmTasks('grunt-google-site-verification');

The "google-site-verification" task

Overview

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

grunt.initConfig({
  google-site-verification: {
    options: {
      code: '<YOUR-VERIFICATION-CODE>'
    },
    dest: '<YOUR-BUILD-FOLDER>'
  }
});

Options

options.code

Type: String Default value: undefined

A verification code Google generated for your domain ownership. If you omit this option the plugin falls back to the environment variable GOOGLE_SITE_VERIFICATION. This can be useful if you don't want to have your verification code in your repository, for custom builds or i.e. Travis-CI deployments.

Usage Examples

This example writes a verification file to './build/google834ee6e921e63f8e.html'.

grunt.initConfig({
  google-site-verification: {
    options: {
      code: '834ee6e921e63f8e'
    },
    dest: 'build'
  }
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

  • 2016/03/02 - v0.1.0 - Bump to 0.1.0 semver as everything is working as expected
  • 2016/03/01 - v0.0.2 - Cleanup, dependency updates + nicer logging
  • 2016/03/01 - v0.0.1 - Basic functionality

Keywords

FAQs

Package last updated on 26 Feb 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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc