forked from mystiq/hydrogen-web
Change directory name
This commit is contained in:
parent
7a1591e0ce
commit
83b5d3b68e
6 changed files with 4 additions and 4 deletions
|
@ -17,7 +17,7 @@ limitations under the License.
|
||||||
import {readFileSync, mkdirSync, writeFileSync} from "fs";
|
import {readFileSync, mkdirSync, writeFileSync} from "fs";
|
||||||
import {resolve} from "path";
|
import {resolve} from "path";
|
||||||
import {h32} from "xxhashjs";
|
import {h32} from "xxhashjs";
|
||||||
import {getColoredSvgString} from "../../src/platform/web/theming/actions/svg-colorizer.mjs";
|
import {getColoredSvgString} from "../../src/platform/web/theming/shared/svg-colorizer.mjs";
|
||||||
|
|
||||||
function createHash(content) {
|
function createHash(content) {
|
||||||
const hasher = new h32(0);
|
const hasher = new h32(0);
|
||||||
|
|
|
@ -13,7 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
See the License for the specific language governing permissions and
|
See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
import {derive} from "./actions/color.mjs";
|
import {derive} from "./shared/color.mjs";
|
||||||
|
|
||||||
export class DerivedVariables {
|
export class DerivedVariables {
|
||||||
private _baseVariables: Record<string, string>;
|
private _baseVariables: Record<string, string>;
|
||||||
|
|
|
@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
import type {Platform} from "../Platform.js";
|
import type {Platform} from "../Platform.js";
|
||||||
import {getColoredSvgString} from "./actions/svg-colorizer.mjs";
|
import {getColoredSvgString} from "./shared/svg-colorizer.mjs";
|
||||||
|
|
||||||
type ParsedStructure = {
|
type ParsedStructure = {
|
||||||
[variableName: string]: {
|
[variableName: string]: {
|
||||||
|
|
|
@ -9,7 +9,7 @@ const manifest = require("./package.json");
|
||||||
const version = manifest.version;
|
const version = manifest.version;
|
||||||
const compiledVariables = new Map();
|
const compiledVariables = new Map();
|
||||||
import {buildColorizedSVG as replacer} from "./scripts/postcss/svg-builder.mjs";
|
import {buildColorizedSVG as replacer} from "./scripts/postcss/svg-builder.mjs";
|
||||||
import {derive} from "./src/platform/web/theming/actions/color.mjs";
|
import {derive} from "./src/platform/web/theming/shared/color.mjs";
|
||||||
|
|
||||||
const commonOptions = {
|
const commonOptions = {
|
||||||
logLevel: "warn",
|
logLevel: "warn",
|
||||||
|
|
Loading…
Reference in a new issue