Skip to content

Commit

Permalink
Output compiled files to lib/
Browse files Browse the repository at this point in the history
  • Loading branch information
eddieantonio committed May 16, 2019
1 parent 3b87457 commit 4fdfa0f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 40 deletions.
40 changes: 1 addition & 39 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Created by https://www.gitignore.io/api/node
# Edit at https://www.gitignore.io/?templates=node

Expand All @@ -14,12 +13,6 @@ lerna-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

Expand All @@ -29,18 +22,6 @@ coverage
# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/
Expand Down Expand Up @@ -70,31 +51,12 @@ typings/
# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
.nuxt

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# End of https://www.gitignore.io/api/node

# Scratch JavaScript files I have kicking around in my root directory.
/*.js

# Files generated by TypeScript (see tsconfig.json)
/src/*.js
/src/gen/*.js
lib/
*.js.map
*.d.ts
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "unicode-default-word-boundary",
"version": "12.0.0-alpha",
"description": "Implements the Unicode default word boundary specification (UAX #29 §4.1)",
"main": "src/index.js",
"main": "lib/index.js",
"scripts": {
"test": "tsc && ava",
"build": "./libexec/compile-word-break.js && tsc",
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
"sourceMap": true, /* Generates corresponding '.map' file. */
"outDir": "lib",

"lib": ["es6"], /* Assume ONLY ES6 runtime is available; do not assume Node or DOM stuff is available. */

Expand Down

0 comments on commit 4fdfa0f

Please sign in to comment.