@powerlines/core 0.9.4 → 0.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -20,7 +20,7 @@ declare const LogCategories: {
|
|
|
20
20
|
readonly BABEL: "babel";
|
|
21
21
|
readonly COMMUNICATION: "communication";
|
|
22
22
|
};
|
|
23
|
-
declare const LOG_CATEGORIES_ARRAY: ("
|
|
23
|
+
declare const LOG_CATEGORIES_ARRAY: ("plugins" | "general" | "fs" | "performance" | "config" | "hooks" | "env" | "rpc" | "babel" | "communication")[];
|
|
24
24
|
declare const LOG_CATEGORIES: readonly ["general", "fs", "performance", "config", "plugins", "hooks", "env", "rpc", "communication", "babel"];
|
|
25
25
|
declare const DEFAULT_DEVELOPMENT_LOG_LEVEL: {
|
|
26
26
|
readonly general: "debug";
|
|
@@ -20,7 +20,7 @@ declare const LogCategories: {
|
|
|
20
20
|
readonly BABEL: "babel";
|
|
21
21
|
readonly COMMUNICATION: "communication";
|
|
22
22
|
};
|
|
23
|
-
declare const LOG_CATEGORIES_ARRAY: ("
|
|
23
|
+
declare const LOG_CATEGORIES_ARRAY: ("plugins" | "general" | "fs" | "performance" | "config" | "hooks" | "env" | "rpc" | "babel" | "communication")[];
|
|
24
24
|
declare const LOG_CATEGORIES: readonly ["general", "fs", "performance", "config", "plugins", "hooks", "env", "rpc", "communication", "babel"];
|
|
25
25
|
declare const DEFAULT_DEVELOPMENT_LOG_LEVEL: {
|
|
26
26
|
readonly general: "debug";
|
|
@@ -2,9 +2,9 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
2
2
|
const require_runtime = require('../_virtual/_rolldown/runtime.cjs');
|
|
3
3
|
const require_constants_environments = require('../constants/environments.cjs');
|
|
4
4
|
const require_lib_plugins = require('../lib/plugins.cjs');
|
|
5
|
+
const require_lib_environment = require('../lib/environment.cjs');
|
|
5
6
|
const require_context_context = require('./context.cjs');
|
|
6
7
|
const require_context_environment_context = require('./environment-context.cjs');
|
|
7
|
-
const require_lib_environment = require('../lib/environment.cjs');
|
|
8
8
|
let _stryke_fs_exists = require("@stryke/fs/exists");
|
|
9
9
|
let _stryke_fs_json = require("@stryke/fs/json");
|
|
10
10
|
let chalk = require("chalk");
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { DEFAULT_ENVIRONMENT, GLOBAL_ENVIRONMENT } from "../constants/environments.mjs";
|
|
2
2
|
import { resolvePlugins } from "../lib/plugins.mjs";
|
|
3
|
+
import { createDefaultEnvironment, createEnvironment } from "../lib/environment.mjs";
|
|
3
4
|
import { PowerlinesContext } from "./context.mjs";
|
|
4
5
|
import { PowerlinesEnvironmentContext } from "./environment-context.mjs";
|
|
5
|
-
import { createDefaultEnvironment, createEnvironment } from "../lib/environment.mjs";
|
|
6
6
|
import { existsSync } from "@stryke/fs/exists";
|
|
7
7
|
import { readJsonFile } from "@stryke/fs/json";
|
|
8
8
|
import chalk from "chalk";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/core",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "An internal core package for Powerlines - please use the `powerlines` package for public usage.",
|
|
6
6
|
"homepage": "https://stormsoftware.com",
|
|
@@ -360,7 +360,7 @@
|
|
|
360
360
|
"devDependencies": {
|
|
361
361
|
"@storm-software/testing-tools": "^1.119.156",
|
|
362
362
|
"@stryke/types": "^0.12.3",
|
|
363
|
-
"@types/bun": "^1.3.
|
|
363
|
+
"@types/bun": "^1.3.14",
|
|
364
364
|
"@types/diff-match-patch": "^1.0.36",
|
|
365
365
|
"@types/node": "^25.7.0",
|
|
366
366
|
"@types/semver": "^7.7.1",
|
|
@@ -371,5 +371,5 @@
|
|
|
371
371
|
"undici-types": "^7.25.0"
|
|
372
372
|
},
|
|
373
373
|
"publishConfig": { "access": "public" },
|
|
374
|
-
"gitHead": "
|
|
374
|
+
"gitHead": "7fbe7d8d2ab955afc2df5f04ed03a0d101af1b57"
|
|
375
375
|
}
|