blob: 568a2a49b5fc570ada434b7be710d3d827260f75 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Red Hat, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Red Hat Inc. - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.wst.jsdt.js.grunt.internal;
import org.eclipse.wst.jsdt.js.grunt.GruntPlugin;
/**
* @author "Ilya Buziuk (ibuziuk)"
*/
public final class GruntConstants {
private GruntConstants() {
}
// Launch constants
public static final String LAUNCH_CONFIGURATION_ID = GruntPlugin.PLUGIN_ID + ".gruntLaunchConfigurationType"; //$NON-NLS-1$
public static final String PROJECT = GruntPlugin.PLUGIN_ID + ".PROJECT"; //$NON-NLS-1$
public static final String DIR = GruntPlugin.PLUGIN_ID + ".DIR"; //$NON-NLS-1$
public static final String COMMAND = GruntPlugin.PLUGIN_ID + ".COMMAND"; //$NON-NLS-1$
public static final String BUILD_FILE = GruntPlugin.PLUGIN_ID + ".BUILD_FILE"; //$NON-NLS-1$
public static final String PARAMETERS = GruntPlugin.PLUGIN_ID + ".PARAMETERS"; //$NON-NLS-1$
public static final String GRUNT = "grunt"; //$NON-NLS-1$
public static final String GRUNT_FILE_JS = "Gruntfile.js"; //$NON-NLS-1$
public static final String DEFAULT_COMMAND = "default"; //$NON-NLS-1$
public static final String GRUNT_NO_COLOR = "--no-color"; //$NON-NLS-1$
public static final String RUN_COMMAND = "run"; //$NON-NLS-1$
}