@wordpress/env 10.34.0 → 10.35.0

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/lib/cli.js CHANGED
@@ -76,7 +76,6 @@ const withSpinner =
76
76
  spinner.fail(
77
77
  typeof error === 'string' ? error : error.message
78
78
  );
79
- // Disable reason: Using console.error() means we get a stack trace.
80
79
  console.error( error );
81
80
  process.exit( 1 );
82
81
  } else {
@@ -1,5 +1,5 @@
1
1
  'use strict';
2
- /* eslint-disable jest/no-conditional-expect */
2
+
3
3
  /**
4
4
  * External dependencies
5
5
  */
@@ -201,4 +201,3 @@ describe( 'Config Integration', () => {
201
201
  expect( config ).toMatchSnapshot();
202
202
  } );
203
203
  } );
204
- /* eslint-enable jest/no-conditional-expect */
@@ -1,5 +1,5 @@
1
1
  'use strict';
2
- /* eslint-disable jest/no-conditional-expect */
2
+
3
3
  /**
4
4
  * External dependencies
5
5
  */
@@ -54,4 +54,3 @@ describe( 'getCacheDirectory', () => {
54
54
  expect( parsed ).toEqual( '/home/test/wp-env' );
55
55
  } );
56
56
  } );
57
- /* eslint-enable jest/no-conditional-expect */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/env",
3
- "version": "10.34.0",
3
+ "version": "10.35.0",
4
4
  "description": "A zero-config, self contained local WordPress environment for development and testing.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -60,5 +60,5 @@
60
60
  "scripts": {
61
61
  "test": "echo \"Error: run tests from root\" && exit 1"
62
62
  },
63
- "gitHead": "ceebff807958d2e8fc755b5a20473939c78b4d1d"
63
+ "gitHead": "77aa1f194edceafe8ac2a1b9438bf84b557e76e3"
64
64
  }