Skip to content

Commit

Permalink
make some changes to compat mode
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinMalfait committed Nov 19, 2020
1 parent f5010f5 commit 195ffe9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions scripts/compat.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,16 @@ if (process.argv.includes('--prepare')) {
// 5. Remove peerDependencies
delete packageJson.peerDependencies

// 6. Write package.json with the new contents
// 6. Use new name
packageJson.name = '@tailwindcss/postcss7-compat'

// 7. Make sure you can publish
packageJson.publishConfig = { access: 'public' }

// 8. Write package.json with the new contents
fs.writeFileSync(fromRootPath('package.json'), JSON.stringify(packageJson, null, 2), 'utf8')

// 7. Print some useful information to make publishing easy
// 9. Print some useful information to make publishing easy
console.log()
console.log('You can safely publish `tailwindcss` in PostCSS 7 compatibility mode:\n')
console.log(
Expand Down

0 comments on commit 195ffe9

Please sign in to comment.