mirror of
https://github.com/google/blockly.git
synced 2026-01-04 15:40:08 +01:00
* feat: added `tests/typescript` to test supported TS examples * fix: update the test name, description, and output * chore: remove unused imports in `test_tasks.js` * fix: wrap README line at 80 characters * fix: implemented `different_user_input.ts` feedback * fix: correct mistaken comments * chore: rename `./eslintrc.json` to `./eslintrc.js` * feat: added linting for tests/typescript * chore: cleanup eslintrc lines over 80 characters * fix: updated `.eslintrc.js` to provide an override for linting itself * fix: updated tests to build to the `build` directory * feat: updated `gulp format` to handle formatting `.eslintrc.js` * fix: updated `.eslintrc.js` to align with both formatter and linter * fix: updated config comment wording * fix: removed quotes for valid identifiers * Revert "fix: removed quotes for valid identifiers" This reverts commit 03eff91aea1468e503bc79a90fb139914d3f39d2.
47 lines
1.5 KiB
JavaScript
47 lines
1.5 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Common configuration for Gulp scripts.
|
|
*/
|
|
|
|
const path = require('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
|
|
// - tests/bootstrap.js (for location of deps.js)
|
|
// - tests/mocha/index.html (for location of deps.mocha.js)
|
|
|
|
// Directory to write compiled output to.
|
|
exports.BUILD_DIR = 'build';
|
|
|
|
// Dependencies file (used by bootstrap.js in uncompiled mode):
|
|
exports.DEPS_FILE = path.join(exports.BUILD_DIR, 'deps.js');
|
|
|
|
// Mocha test dependencies file (used by tests/mocha/index.html):
|
|
exports.TEST_DEPS_FILE = path.join(exports.BUILD_DIR, 'deps.mocha.js');
|
|
|
|
// Directory to write typings output to.
|
|
exports.TYPINGS_BUILD_DIR = path.join(exports.BUILD_DIR, 'declarations');
|
|
|
|
// Directory where typescript compiler output can be found.
|
|
// Matches the value in tsconfig.json: outDir
|
|
exports.TSC_OUTPUT_DIR = path.join(exports.BUILD_DIR, 'src');
|
|
|
|
// Directory for files generated by compiling test code.
|
|
exports.TEST_TSC_OUTPUT_DIR = path.join(exports.BUILD_DIR, 'tests');
|
|
|
|
// Directory in which to assemble (and from which to publish) the
|
|
// blockly npm package.
|
|
exports.RELEASE_DIR = 'dist';
|