@netlify/run-utils 4.0.1 → 4.0.2

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.
File without changes
package/package.json CHANGED
@@ -1,16 +1,18 @@
1
1
  {
2
2
  "name": "@netlify/run-utils",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "Utility for running commands inside Netlify Build",
5
5
  "type": "module",
6
- "exports": "./src/main.js",
7
- "main": "./src/main.js",
6
+ "exports": "./lib/main.js",
7
+ "main": "./lib/main.js",
8
8
  "files": [
9
- "src/**/*.js"
9
+ "lib/**/*.js"
10
10
  ],
11
11
  "author": "Netlify Inc.",
12
12
  "scripts": {
13
- "prepublishOnly": "cd ../../ && npm run prepublishOnly"
13
+ "prepublishOnly": "cd ../../ && npm run prepublishOnly",
14
+ "prebuild": "rm -rf lib",
15
+ "build": "cp -a src lib/"
14
16
  },
15
17
  "keywords": [
16
18
  "nodejs",
@@ -48,7 +50,7 @@
48
50
  "execa": "^6.0.0"
49
51
  },
50
52
  "devDependencies": {
51
- "ava": "^3.15.0",
53
+ "ava": "^4.0.0",
52
54
  "semver": "^7.0.0"
53
55
  },
54
56
  "engines": {