mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
20fe65ce41
Fixes #5845 Implement tslint for core files **What is this?** Implements tslint for both next and next-server, but keeps standardjs/eslint for the .js files that are still there, we're gradually migrating to Typescript. **How does it work?** Before every commit (pre-commit) we execute the following `tslint` command: `tslint -c tslint.json 'packages/**/*.ts` **TSLint Rules** In order to avoid as much changes as possible I marked some rules as false. This way we can improve the linter but making sure this step will not break things. (see tslint.json) **Note** After merging this PR, you'll need to update your dependencies since it adds tslint to package.json
52 lines
1.4 KiB
JavaScript
Executable file
52 lines
1.4 KiB
JavaScript
Executable file
#!/usr/bin/env node
|
|
import { resolve, join } from 'path'
|
|
import { existsSync } from 'fs'
|
|
import arg from 'arg'
|
|
import build from '../build'
|
|
import { printAndExit } from '../server/lib/utils'
|
|
|
|
const args = arg({
|
|
// Types
|
|
'--help': Boolean,
|
|
// Aliases
|
|
'-h': '--help',
|
|
})
|
|
|
|
if (args['--help']) {
|
|
printAndExit(`
|
|
Description
|
|
Compiles the application for production deployment
|
|
|
|
Usage
|
|
$ next build <dir>
|
|
|
|
<dir> represents where the compiled dist folder should go.
|
|
If no directory is provided, the dist folder will be created in the current directory.
|
|
You can set a custom folder in config https://github.com/zeit/next.js#custom-configuration, otherwise it will be created inside '.next'
|
|
`, 0)
|
|
}
|
|
|
|
const dir = resolve(args._[0] || '.')
|
|
|
|
// Check if the provided directory exists
|
|
if (!existsSync(dir)) {
|
|
printAndExit(`> No such directory exists as the project root: ${dir}`)
|
|
}
|
|
|
|
// Check if the pages directory exists
|
|
if (!existsSync(join(dir, 'pages'))) {
|
|
// Check one level down the tree to see if the pages directory might be there
|
|
if (existsSync(join(dir, '..', 'pages'))) {
|
|
printAndExit('> No `pages` directory found. Did you mean to run `next` in the parent (`../`) directory?')
|
|
}
|
|
|
|
printAndExit('> Couldn\'t find a `pages` directory. Please create one under the project root')
|
|
}
|
|
|
|
build(dir)
|
|
.catch((err) => {
|
|
// tslint:disable-next-line
|
|
console.error('> Build error occurred')
|
|
printAndExit(err)
|
|
})
|