@expo/template-file 0.1.17 → 0.1.20

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +13 -22
package/README.md CHANGED
@@ -34,4 +34,4 @@ await templateFile('abc.json.template', 'abc.json', { ABC: 123, XYZ: 789 });
34
34
 
35
35
  ## Repository
36
36
 
37
- https://github.com/expo/turtle-v2/tree/master/src/libs/template-file
37
+ https://github.com/expo/eas-build/tree/main/src/packages/template-file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/template-file",
3
- "version": "0.1.17",
3
+ "version": "0.1.20",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [
@@ -8,20 +8,15 @@
8
8
  ],
9
9
  "scripts": {
10
10
  "start": "yarn watch",
11
- "watch": "yarn compile --watch --preserveWatchOutput",
12
- "build": "npm run clean && npm run compile",
13
- "clean": "rm -rf ./dist",
14
- "clean-all": "yarn clean && rm -rf node_modules",
15
- "compile": "tsc -p tsconfig.build.json",
16
- "prepublishOnly": "npm run build",
17
- "test:unit": "./resources/jest --config jest.config.unit.js",
18
- "test:unit:watch": "./resources/jest --config jest.config.unit.js --watch",
19
- "test:integration": "echo \"no tests found\" || ./resources/jest --runInBand --config jest.config.integration.js",
20
- "test:integration:watch": "./resources/jest --runInBand --config jest.config.integration.js --watchAll"
11
+ "watch": "tsc --watch --preserveWatchOutput",
12
+ "build": "tsc",
13
+ "prepack": "rm -rf dist && tsc -p tsconfig.build.json",
14
+ "test": "jest --config jest.config.js",
15
+ "test:watch": "jest --config jest.config.js --watch"
21
16
  },
22
- "keywords": [],
23
- "author": "",
24
- "license": "ISC",
17
+ "author": "Expo <support@expo.io>",
18
+ "bugs": "https://github.com/expo/eas-build/issues",
19
+ "license": "BUSL-1.1",
25
20
  "dependencies": {
26
21
  "fs-extra": "^9.0.0",
27
22
  "lodash": "^4.17.20"
@@ -31,13 +26,9 @@
31
26
  "@types/jest": "^26.0.20",
32
27
  "@types/lodash": "^4.14.167",
33
28
  "@types/lodash.template": "^4.4.6",
34
- "@types/node": "^14.14.31",
35
- "jest": "^26.6.3",
36
- "ts-jest": "^26.5.1",
37
- "typescript": "^4.1.5"
38
- },
39
- "volta": {
40
- "node": "14.15.1",
41
- "yarn": "1.22.10"
29
+ "@types/node": "^16.11.26",
30
+ "jest": "^27.5.1",
31
+ "ts-jest": "^27.1.3",
32
+ "typescript": "^4.6.2"
42
33
  }
43
34
  }