mirror of
https://github.com/google/blockly.git
synced 2025-12-16 06:10:12 +01:00
* refactor(build): Rename "package" gulp task (but not npm script) to "pack" This is to avoid an issue due to "package" being a reserved word in JavaScript, and therefore not a valid export identifier. * refactor(build): Convert gulpfile.js from CJS to ESM. * refactor(build): Convert scripts/gulpfiles/*.js from CJS to ESM * fix(build): Fix eslint warning for @license tag in gulpfile.mjs * chore(build): Remove unused imports * fix(build): Fix incorrect import of gulp-gzip * fix(build): Fix incorrect sourcemaps import reference
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Common configuration for Gulp scripts.
|
|
*/
|
|
|
|
import * as path from 'path';
|
|
|
|
// Paths are all relative to the repository root. Do not include
|
|
// trailing slash.
|
|
//
|
|
// TODO(#5007): If you modify these values, you must also modify the
|
|
// corresponding values in the following files:
|
|
//
|
|
// - tests/scripts/compile_typings.sh
|
|
// - tests/scripts/check_metadata.sh
|
|
// - tests/scripts/update_metadata.sh
|
|
|
|
// Directory to write compiled output to.
|
|
export const BUILD_DIR = 'build';
|
|
|
|
// Directory to write typings output to.
|
|
export const TYPINGS_BUILD_DIR = path.join(BUILD_DIR, 'declarations');
|
|
|
|
// Directory to write langfile output to.
|
|
export const LANG_BUILD_DIR = path.join(BUILD_DIR, 'msg');
|
|
|
|
// Directory where typescript compiler output can be found.
|
|
// Matches the value in tsconfig.json: outDir
|
|
export const TSC_OUTPUT_DIR = path.join(BUILD_DIR, 'src');
|
|
|
|
// Directory for files generated by compiling test code.
|
|
export const TEST_TSC_OUTPUT_DIR = path.join(BUILD_DIR, 'tests');
|
|
|
|
// Directory in which to assemble (and from which to publish) the
|
|
// blockly npm package.
|
|
export const RELEASE_DIR = 'dist';
|