Skip to content

Commit

Permalink
Merge branch 'dev' into master; tag v0.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Harvey committed May 1, 2021
2 parents ce79622 + 505174c commit d738503
Show file tree
Hide file tree
Showing 12 changed files with 7,325 additions and 1,051 deletions.
5 changes: 0 additions & 5 deletions .npmignore

This file was deleted.

7 changes: 4 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ const typescript = require('gulp-typescript')
const tsconfig = require('./tsconfig.json')

function dist() {
return gulp.src('./src/class/*.class.ts')
.pipe(typescript(tsconfig.compilerOptions))
.pipe(gulp.dest('./dist/class/'))
return gulp.src('./src/**/*.ts')
.pipe(typescript(tsconfig.compilerOptions))
.pipe(gulp.dest('./dist/'))
;
}

function test() {
Expand Down
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ module.exports = {
Set : require('./dist/class/Set.class.js' ).default,
String : require('./dist/class/String.class.js' ).default,

MapEq: require('./dist/MapEq.js').MapEq,

NumericType: Number_module.NumericType,
IndexOutOfBoundsError: require('./dist/class/IndexOutOfBoundsError.class.js').default,
NaNError: require('./dist/class/NaNError.class.js').default,
Expand Down
4 changes: 4 additions & 0 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ export { default as Promise } from './src/class/Promise.class'
export { default as Set } from './src/class/Set.class'
export { default as String } from './src/class/String.class'

export {MapEq} from './src/MapEq';

export {NumericType} from './src/class/Number.class'
export {TemplateTag} from './src/class/String.class'

export { default as IndexOutOfBoundsError } from './src/class/IndexOutOfBoundsError.class'
export { default as NaNError } from './src/class/NaNError.class'
Loading

0 comments on commit d738503

Please sign in to comment.