unpkgfs
v0.1.6
Published
unpkgfs
Readme
unpkgfs
import { fs, npm } from 'unpkgfs';
npm.init({
name: 'test',
version: '0.0.1',
});
await npm.install({
'@types/react': '17.0.2',
});
expect(
JSON.parse(
fs
.readFileSync('/node_modules/@types/[email protected]/package.json')
.toString('utf-8')
).description
).toBe('TypeScript definitions for React');