-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
237 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import * as TE from 'fp-ts/TaskEither' | ||
import { flow } from 'fp-ts/function' | ||
import * as fs from 'fs' | ||
import * as G from 'glob' | ||
|
||
export interface FileSystem { | ||
readonly readFile: (path: string) => TE.TaskEither<Error, string> | ||
readonly writeFile: (path: string, content: string) => TE.TaskEither<Error, void> | ||
readonly copyFile: (from: string, to: string) => TE.TaskEither<Error, void> | ||
readonly glob: (pattern: string) => TE.TaskEither<Error, ReadonlyArray<string>> | ||
readonly mkdir: (path: string) => TE.TaskEither<Error, void> | ||
} | ||
|
||
const readFile = TE.taskify<fs.PathLike, string, NodeJS.ErrnoException, string>(fs.readFile) | ||
const writeFile = TE.taskify<fs.PathLike, string, NodeJS.ErrnoException, void>(fs.writeFile) | ||
const copyFile = TE.taskify<fs.PathLike, fs.PathLike, NodeJS.ErrnoException, void>(fs.copyFile) | ||
const glob = TE.taskify<string, Error, ReadonlyArray<string>>(G) | ||
const mkdirTE = TE.taskify(fs.mkdir) | ||
|
||
export const fileSystem: FileSystem = { | ||
readFile: (path) => readFile(path, 'utf8'), | ||
writeFile, | ||
copyFile, | ||
glob, | ||
mkdir: flow( | ||
mkdirTE, | ||
TE.map(() => undefined), | ||
TE.orElse((e) => (e.code === 'EEXIST' ? TE.of(undefined) : TE.left(e))) | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
import * as path from 'path' | ||
import * as E from 'fp-ts/Either' | ||
import { pipe } from 'fp-ts/function' | ||
import * as RTE from 'fp-ts/ReaderTaskEither' | ||
import * as A from 'fp-ts/ReadonlyArray' | ||
import * as TE from 'fp-ts/TaskEither' | ||
import { FileSystem, fileSystem } from './FileSystem' | ||
import { run } from './run' | ||
import * as O from 'fp-ts/Option' | ||
|
||
interface Build<A> extends RTE.ReaderTaskEither<FileSystem, Error, A> {} | ||
|
||
const OUTPUT_FOLDER = 'dist' | ||
const PKG = 'package.json' | ||
|
||
export const copyPackageJson: Build<void> = (C) => | ||
pipe( | ||
C.readFile(PKG), | ||
TE.chain((s) => TE.fromEither(E.parseJSON(s, E.toError))), | ||
TE.map((v) => { | ||
const clone = Object.assign({}, v as any) | ||
|
||
delete clone.scripts | ||
delete clone.files | ||
delete clone.devDependencies | ||
|
||
return clone | ||
}), | ||
TE.chain((json) => C.writeFile(path.join(OUTPUT_FOLDER, PKG), JSON.stringify(json, null, 2))) | ||
) | ||
|
||
export const FILES: ReadonlyArray<string> = ['CHANGELOG.md', 'LICENSE', 'README.md'] | ||
|
||
export const copyFiles: Build<ReadonlyArray<void>> = (C) => | ||
pipe( | ||
FILES, | ||
A.traverse(TE.taskEither)((from) => C.copyFile(from, path.resolve(OUTPUT_FOLDER, from))) | ||
) | ||
|
||
const traverse = A.traverse(TE.taskEither) | ||
|
||
export const makeModules: Build<void> = (C) => | ||
pipe( | ||
C.glob(`${OUTPUT_FOLDER}/lib/**/*.js`), | ||
TE.map(getModules), | ||
TE.chain(traverse(makeSingleModule(C))), | ||
TE.map(() => undefined) | ||
) | ||
|
||
function getModules(paths: ReadonlyArray<string>): ReadonlyArray<readonly [string, O.Option<string>]> { | ||
return paths | ||
.map((filePath) => { | ||
const parent = pipe( | ||
path.basename(path.dirname(filePath)), | ||
O.fromPredicate((s) => s !== 'lib') | ||
) | ||
return [path.basename(filePath, '.js'), parent] as const | ||
}) | ||
.filter((x) => x[0] !== 'index') | ||
} | ||
|
||
function makeSingleModule(C: FileSystem): (module: readonly [string, O.Option<string>]) => TE.TaskEither<Error, void> { | ||
return (module) => { | ||
return pipe( | ||
module[1], | ||
O.fold( | ||
() => | ||
pipe( | ||
C.mkdir(path.join(OUTPUT_FOLDER, module[0])), | ||
TE.chain(() => C.writeFile(path.join(OUTPUT_FOLDER, module[0], 'package.json'), makePkgJson(module))) | ||
), | ||
(parent) => | ||
pipe( | ||
C.mkdir(path.join(OUTPUT_FOLDER, parent)), | ||
TE.chain(() => C.mkdir(path.join(OUTPUT_FOLDER, parent, module[0]))), | ||
TE.chain(() => | ||
C.writeFile(path.join(OUTPUT_FOLDER, parent, module[0], 'package.json'), makePkgJson(module)) | ||
) | ||
) | ||
) | ||
) | ||
} | ||
} | ||
|
||
function makePkgJson(module: readonly [string, O.Option<string>]): string { | ||
const name = module[0] | ||
const prefix = pipe( | ||
module[1], | ||
O.fold( | ||
() => '', | ||
() => '../' | ||
) | ||
) | ||
const parent = pipe( | ||
module[1], | ||
O.fold( | ||
() => '', | ||
(parent) => parent + '/' | ||
) | ||
) | ||
return JSON.stringify( | ||
{ | ||
main: `${prefix}../lib/${parent}${name}.js`, | ||
module: `${prefix}../es6/${parent}${name}.js`, | ||
typings: `${prefix}../lib/${parent}${name}.d.ts`, | ||
sideEffects: false | ||
}, | ||
null, | ||
2 | ||
) | ||
} | ||
|
||
const main: Build<void> = pipe( | ||
copyPackageJson, | ||
RTE.chain(() => copyFiles), | ||
RTE.chain(() => makeModules) | ||
) | ||
|
||
run( | ||
main({ | ||
...fileSystem | ||
}) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { left } from 'fp-ts/TaskEither' | ||
import { run } from './run' | ||
|
||
const main = left(new Error('"npm publish" can not be run from root, run "npm run release" instead')) | ||
|
||
run(main) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { run } from './run' | ||
import * as child_process from 'child_process' | ||
import { left, right } from 'fp-ts/Either' | ||
import * as TE from 'fp-ts/TaskEither' | ||
|
||
const DIST = 'dist' | ||
|
||
const exec = (cmd: string, args?: child_process.ExecOptions): TE.TaskEither<Error, void> => () => | ||
new Promise((resolve) => { | ||
child_process.exec(cmd, args, (err) => { | ||
if (err !== null) { | ||
return resolve(left(err)) | ||
} | ||
|
||
return resolve(right(undefined)) | ||
}) | ||
}) | ||
|
||
export const main = exec('npm publish --tag=next', { | ||
cwd: DIST | ||
}) | ||
|
||
run(main) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { fold } from 'fp-ts/Either' | ||
import { TaskEither } from 'fp-ts/TaskEither' | ||
|
||
export function run<A>(eff: TaskEither<Error, A>): void { | ||
eff() | ||
.then( | ||
fold( | ||
(e) => { | ||
throw e | ||
}, | ||
(_) => { | ||
process.exitCode = 0 | ||
} | ||
) | ||
) | ||
.catch((e) => { | ||
console.error(e) // tslint:disable-line no-console | ||
|
||
process.exitCode = 1 | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"extends": "./tsconfig.build.json", | ||
"compilerOptions": { | ||
"outDir": "./es6", | ||
"outDir": "./dist/es6", | ||
"module": "es6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters