@jsenv/core 32.1.0 → 32.1.1

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.
package/dist/main.js CHANGED
@@ -20894,7 +20894,7 @@ const build = async ({
20894
20894
  }
20895
20895
  sourceDirectoryUrl = assertAndNormalizeDirectoryUrl(sourceDirectoryUrl, "sourceDirectoryUrl");
20896
20896
  buildDirectoryUrl = assertAndNormalizeDirectoryUrl(buildDirectoryUrl, "buildDirectoryUrl");
20897
- if (outDirectoryUrl === undefined) {
20897
+ if (outDirectoryUrl === undefined && !process.env.CI) {
20898
20898
  const packageDirectoryUrl = lookupPackageDirectory(sourceDirectoryUrl);
20899
20899
  if (packageDirectoryUrl) {
20900
20900
  outDirectoryUrl = `${packageDirectoryUrl}.jsenv/`;
@@ -22784,7 +22784,7 @@ const startDevServer = async ({
22784
22784
  throw new TypeError(`${unexpectedParamNames.join(",")}: there is no such param`);
22785
22785
  }
22786
22786
  sourceDirectoryUrl = assertAndNormalizeDirectoryUrl(sourceDirectoryUrl, "sourceDirectoryUrl");
22787
- if (outDirectoryUrl === undefined) {
22787
+ if (outDirectoryUrl === undefined && !process.env.CI) {
22788
22788
  const packageDirectoryUrl = lookupPackageDirectory(sourceDirectoryUrl);
22789
22789
  if (packageDirectoryUrl) {
22790
22790
  outDirectoryUrl = `${packageDirectoryUrl}.jsenv/`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "32.1.0",
3
+ "version": "32.1.1",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -174,7 +174,7 @@ export const build = async ({
174
174
  buildDirectoryUrl,
175
175
  "buildDirectoryUrl",
176
176
  )
177
- if (outDirectoryUrl === undefined) {
177
+ if (outDirectoryUrl === undefined && !process.env.CI) {
178
178
  const packageDirectoryUrl = lookupPackageDirectory(sourceDirectoryUrl)
179
179
  if (packageDirectoryUrl) {
180
180
  outDirectoryUrl = `${packageDirectoryUrl}.jsenv/`
@@ -78,7 +78,7 @@ export const startDevServer = async ({
78
78
  sourceDirectoryUrl,
79
79
  "sourceDirectoryUrl",
80
80
  )
81
- if (outDirectoryUrl === undefined) {
81
+ if (outDirectoryUrl === undefined && !process.env.CI) {
82
82
  const packageDirectoryUrl = lookupPackageDirectory(sourceDirectoryUrl)
83
83
  if (packageDirectoryUrl) {
84
84
  outDirectoryUrl = `${packageDirectoryUrl}.jsenv/`