Skip to content

Commit 01f67d1

Browse files
committed
feat(browser): add browser build, tests, and sample sha256 library method
1 parent a56491f commit 01f67d1

18 files changed

+901
-65
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
node_modules
22
build
3+
test
34
src/**.js
45

56
coverage

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
src
22
config
33
examples
4+
test
45
tsconfig.json
56
tslint.json
67
.travis.yml
78
.github
9+
build/temp
810

911
coverage
1012
.nyc_output

config/exports/build-tests.js

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// this script watches the tests exported by typescript, copies them to the test directories, and modifies the require("PKG.NAME") statements to test each build
2+
const cpx = require("cpx");
3+
const separator = require("path").sep;
4+
const Transform = require("stream").Transform;
5+
const pkg = require('../../package');
6+
const req = (path) => 'require("' + path + '")';
7+
const pathUp = (levels) => Array.from(Array(levels), () => '../').join('');
8+
9+
// replace instances of pkg.name with the proper route to the build being tested
10+
const makeTransform = (filePath, buildPath) => {
11+
const buildPathParts = buildPath.split(separator);
12+
// filePath includes build/main (-2), test/BUILD is 2 deep (+2),
13+
// remove filename (-1). Total is length - 2
14+
const pathToRoot = pathUp(filePath.split(separator).length - 1);
15+
const placeholder = req(pkg.name);
16+
return new Transform({
17+
transform(chunk, encoding, done) {
18+
const str = chunk.toString();
19+
const parts = str.split(placeholder)
20+
const newPath = req(pathToRoot + buildPath)
21+
const result = parts.join(newPath);
22+
this.push(result);
23+
done();
24+
}
25+
});
26+
}
27+
28+
// copy, then watch for changes to the tests
29+
const testsFromRoot = 'build/main/**/*.spec.js';
30+
const task = process.argv[2] === '-w' ? cpx.watch : cpx.copy;
31+
32+
task(testsFromRoot, 'test/main', {
33+
transform: (filePath) => makeTransform(filePath, pkg.main)
34+
})
35+
task(testsFromRoot, 'test/browser', {
36+
transform: (filePath) => makeTransform(filePath, pkg.browser.replace('.js', '.cjs.js'))
37+
})

config/exports/rollup.config.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// rollup.config.js
2+
import commonjs from 'rollup-plugin-commonjs';
3+
import nodeResolve from 'rollup-plugin-node-resolve';
4+
import alias from 'rollup-plugin-alias';
5+
6+
const substituteModulePaths = {
7+
'crypto': 'build/module/adapters/crypto.browser.js',
8+
'hash.js': 'build/temp/hash.js'
9+
}
10+
11+
export default {
12+
entry: 'build/module/index.js',
13+
sourceMap: true,
14+
plugins: [
15+
alias(substituteModulePaths),
16+
nodeResolve({
17+
browser: true
18+
}),
19+
commonjs()
20+
]
21+
}

config/exports/tsconfig.module.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "../../tsconfig",
3+
"compilerOptions": {
4+
"outDir": "../../build/module",
5+
"rootDir": "../../src",
6+
"module": "es6",
7+
"declaration": false
8+
}
9+
}

config/tsconfig.module.json

-12
This file was deleted.

package.json

+22-13
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,27 @@
55
"main": "build/main/index.js",
66
"typings": "build/main/index.d.ts",
77
"module": "build/module/index.js",
8+
"browser": "build/browser/index.js",
89
"repository": "https://github.com/bitjson/typescript-starter",
910
"author": "Jason Dreyzehner <[email protected]>",
1011
"license": "MIT",
1112
"scripts": {
1213
"info": "npm-scripts-info",
13-
"build": "trash build && tsc -p tsconfig.json && tsc -p config/tsconfig.module.json",
14+
"build": "trash build && yarn build:main && yarn build:module && yarn build:browser-deps && yarn build:browser && yarn build:browser-cjs",
15+
"build:main": "tsc -p tsconfig.json",
16+
"build:module": "tsc -p config/exports/tsconfig.module.json",
17+
"build:browser-deps": "mkdirp build/temp && browserify node_modules/hash.js/lib/hash.js -o build/temp/hash.js",
18+
"build:browser": "rollup -c config/exports/rollup.config.js -f es -o build/browser/index.js",
19+
"build:browser-cjs": "rollup -c config/exports/rollup.config.js -f cjs -o build/browser/index.cjs.js",
20+
"build:tests": "node config/exports/build-tests.js",
1421
"lint": "tslint src/**/*.ts",
15-
"unit": "yarn build && nyc ava",
22+
"unit": "yarn build && yarn build:tests && nyc ava",
1623
"check-coverage": "nyc check-coverage --lines 100 --functions 100 --branches 100",
17-
"test": "yarn lint && yarn unit && yarn check-coverage",
24+
"test": "yarn lint && yarn unit && yarn check-coverage && ava",
1825
"watch": "trash build && multiview [yarn watch:build] [yarn watch:unit]",
1926
"watch:build": "tsc -p tsconfig.json -w",
2027
"watch:unit": "tsc -p tsconfig.json && ava --watch --verbose",
28+
"watch:build:tests": "node config/exports/build-tests.js -w",
2129
"cov": "yarn unit && yarn html-coverage && opn coverage/index.html",
2230
"html-coverage": "nyc report --reporter=html",
2331
"send-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
@@ -46,12 +54,20 @@
4654
},
4755
"devDependencies": {
4856
"@types/node": "^7.0.5",
49-
"ava": "^0.18.1",
57+
"ava": "^0.18.2",
58+
"browserify": "^14.1.0",
5059
"codecov": "^1.0.1",
60+
"cpx": "^1.5.0",
61+
"hash.js": "^1.0.3",
62+
"mkdirp": "^0.5.1",
5163
"multiview": "^2.3.1",
5264
"npm-scripts-info": "^0.3.6",
5365
"nyc": "^10.0.0",
5466
"opn-cli": "^3.1.0",
67+
"rollup": "^0.41.4",
68+
"rollup-plugin-alias": "^1.2.0",
69+
"rollup-plugin-commonjs": "^7.0.0",
70+
"rollup-plugin-node-resolve": "^2.0.0",
5571
"standard-version": "^4.0.0",
5672
"trash-cli": "^1.4.0",
5773
"tslint": "^4.0.2",
@@ -82,15 +98,8 @@
8298
],
8399
"nyc": {
84100
"exclude": [
85-
"**/*.spec.js"
86-
]
87-
},
88-
"ava": {
89-
"files": [
90-
"build/main/**/*.spec.js"
91-
],
92-
"source": [
93-
"build/main/**/*"
101+
"**/*.spec.js",
102+
"build"
94103
]
95104
},
96105
"dependencies": {

src/adapters/crypto.browser.ts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// Must first be built by browserify.
2+
// https://github.com/rollup/rollup-plugin-commonjs/issues/105#issuecomment-281917166
3+
import hash from 'hash.js'
4+
5+
export function createHash (algorithm: 'sha256') {
6+
console.log(hash)
7+
return hash.sha256()
8+
}

src/index.spec.ts

-8
This file was deleted.

src/index.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
export * from './lib/numberOps'
2-
export * from './lib/asyncOps'
1+
export * from './lib/async'
2+
export * from './lib/hash'
3+
export * from './lib/number'

src/lib/asyncOps.spec.ts src/lib/async.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { test } from 'ava'
2-
import { asyncABC } from '../'
2+
import { asyncABC } from 'typescript-starter'
33

44
test('getABC', async t => {
55
t.deepEqual(await asyncABC(), ['a','b', 'c'])
File renamed without changes.

src/lib/hash.spec.ts

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { test } from 'ava'
2+
import { sha256 } from 'typescript-starter'
3+
4+
test('sha256', t => {
5+
t.deepEqual(sha256('test'), '9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08')
6+
})

src/lib/hash.ts

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { createHash } from 'crypto'
2+
3+
/**
4+
* Calculate the sha256 digest of a string. On Node.js, this will use the native module, in the browser, it will fall back to a pure javascript implementation.
5+
*
6+
* ### Example (es imports)
7+
* ```js
8+
* import { sha256 } from 'typescript-starter'
9+
* sha256('test')
10+
* // => '9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08'
11+
* ```
12+
*
13+
* @returns sha256 message digest
14+
*/
15+
export function sha256 (message: string) {
16+
return createHash('sha256').update(message).digest('hex')
17+
}

src/lib/numberOps.spec.ts src/lib/number.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { test } from 'ava'
2-
import { double, power } from '../'
2+
import { double, power } from 'typescript-starter'
33

44
test('double', t => {
55
t.deepEqual(double(2), 4)
File renamed without changes.

tsconfig.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "./config/tsconfig.flexible",
2+
"extends": "./config/tsconfig.flexible", // also available: "./config/tsconfig.strict"
33
"compilerOptions": {
44
"target": "es6",
55
"outDir": "build/main",
@@ -17,7 +17,11 @@
1717
],
1818
"types" : [
1919
"node"
20-
]
20+
],
21+
"baseUrl": ".", // required for "paths"
22+
"paths": {
23+
"typescript-starter": ["src/index.ts"] // write tests without relative paths
24+
}
2125
},
2226
"include": [
2327
"src/**/*.ts"

0 commit comments

Comments
 (0)