Skip to content

Commit

Permalink
vx: use context directly from published package
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Nov 10, 2021
1 parent 962bc06 commit ec69173
Show file tree
Hide file tree
Showing 4 changed files with 3,065 additions and 14 deletions.
12 changes: 6 additions & 6 deletions package.json
Expand Up @@ -4,7 +4,8 @@
"test": "vx test",
"release": "vx release",
"lint": "eslint . --ignore-path .gitignore",
"prepare": "husky install"
"prepare": "husky install",
"preinstall": "cd ./vx && yarn"
},
"prettier": {
"arrowParens": "avoid",
Expand All @@ -14,8 +15,7 @@
"main": "vest"
},
"workspaces": [
"packages/*",
"vx/"
"packages/*"
],
"devDependencies": {
"@types/jest": "^26.0.23",
Expand All @@ -35,12 +35,12 @@
"tsc": "^2.0.3",
"tslib": "^2.2.0",
"typescript": "^4.2.0",
"wait": "^0.4.2"
"wait": "^0.4.2",
"pretty-quick": "^3.1.1",
"vx": "./vx"
},
"private": true,
"dependencies": {
"pretty-quick": "^3.1.1",
"vx": "./vx"
},
"repository": {
"type": "git",
Expand Down
7 changes: 0 additions & 7 deletions packages/vest/promisify/package.json

This file was deleted.

2 changes: 1 addition & 1 deletion vx/vxContext.js
@@ -1,4 +1,4 @@
const { createContext } = require('context');
const createContext = require('context').default;

const ctx = createContext();

Expand Down

0 comments on commit ec69173

Please sign in to comment.