mirror of
https://github.com/google/blockly.git
synced 2026-01-11 19:07:08 +01:00
I have verified that npm run build && npm run package produces an identical dist/ directory compared to the one produced prior to this and the previous commit.
23 lines
474 B
JavaScript
23 lines
474 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Common configuration for Gulp scripts.
|
|
*/
|
|
|
|
var path = require('path');
|
|
|
|
// Paths are all relative to the repository root. Do not include
|
|
// trailing slash.
|
|
module.exports = {
|
|
// Directory to write compiled output to.
|
|
BUILD_DIR: 'built',
|
|
|
|
// Directory in which to assemble (and from which to publish) the
|
|
// blockly npm package.
|
|
RELEASE_DIR: 'dist',
|
|
};
|