Skip to content

Commit

Permalink
Merge pull request #9 from lengfangbing/feature/develop
Browse files Browse the repository at this point in the history
Feature/develop
  • Loading branch information
lengfangbing committed Jul 18, 2022
2 parents 6a24f4a + a6a100b commit 19d7768
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .npmignore
Expand Up @@ -23,3 +23,7 @@ rollup.*
node_modules
tsconfig.json
rollup.config.js
.travis.yml
coverage
test
jest.config.js
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@bell-crow/pipe-core",
"version": "1.4.0",
"version": "1.4.2",
"description": "process data like a pipeline",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/test/index.test.ts → test/index.test.ts
@@ -1,5 +1,5 @@
/* eslint-disable no-undef */
import { createPipeCore } from '../core';
import { createPipeCore } from '../src/core';

const _value = {
name: 'pipe-core',
Expand Down
5 changes: 4 additions & 1 deletion tsconfig.json
Expand Up @@ -108,5 +108,8 @@
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true
/* Skip type checking all .d.ts files. */
}
},
"exclude": [
"test"
]
}

0 comments on commit 19d7768

Please sign in to comment.