UNPKG

create-next-app-ts

Version:

It automatically builds a nextjs, typescript and eslint working environment

21 lines (15 loc) 574 B
#!/usr/bin/env node const {existsSync} = require(`fs`); const {createRequire} = require(`module`); const {resolve} = require(`path`); const relPnpApiPath = "../../../.pnp.cjs"; const absPnpApiPath = resolve(__dirname, relPnpApiPath); const absRequire = createRequire(absPnpApiPath); if (existsSync(absPnpApiPath)) { if (!process.versions.pnp) { // Setup the environment to be able to require prettier/index.js require(absPnpApiPath).setup(); } } // Defer to the real prettier/index.js your application uses module.exports = absRequire(`prettier/index.js`);