Skip to content

Commit

Permalink
1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
heifade committed Oct 25, 2018
1 parent e739ff4 commit 306a225
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 26 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -7,6 +7,7 @@
/es
/docs
/lib
/ts

# misc
.DS_Store
Expand Down
4 changes: 3 additions & 1 deletion build.config.ts
@@ -1,7 +1,9 @@
import { BuildConfig } from "happywork-node-builder";

const config: BuildConfig = {
input: "src/index.ts",
input: {
index: "src/index.ts"
},
output: [
{
dir: "es",
Expand Down
14 changes: 8 additions & 6 deletions package.json
@@ -1,20 +1,21 @@
{
"name": "fs-i",
"version": "1.2.3",
"version": "1.2.4",
"description": "file tools",
"main": "./lib/index.js",
"module": "./es/index.js",
"typings": "./es/index",
"typings": "./ts/index.d.ts",
"files": [
"es",
"lib"
"lib",
"ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/heifade/fs-i.git"
},
"scripts": {
"build": "happywork-node-builder build --doc",
"build": "happywork-node-builder build --doc && tsc",
"test": "happywork-node-builder test"
},
"keywords": [],
Expand All @@ -24,8 +25,9 @@
"@types/chai": "^4.1.0",
"@types/mocha": "^2.2.46",
"chai": "^4.1.2",
"happywork-node-builder": "^1.0.45",
"mocha": "^4.1.0"
"happywork-node-builder": "^1.0.51",
"mocha": "^4.1.0",
"typescript": "^3.1.3"
},
"dependencies": {}
}
6 changes: 4 additions & 2 deletions tsconfig.json
@@ -1,8 +1,10 @@
{
"include": ["src/**/*.ts"],
"compilerOptions": {
"allowJs": true,
"lib": ["es2015", "es2015.promise"],
"allowSyntheticDefaultImports": true,
"moduleResolution": "node"
"moduleResolution": "node",
"outDir": "ts",
"declaration": true
}
}
21 changes: 4 additions & 17 deletions yarn.lock
Expand Up @@ -1245,11 +1245,6 @@ fs-extra@^7.0.0:
jsonfile "^4.0.0"
universalify "^0.1.0"

fs-i@^1.2.2:
version "1.2.2"
resolved "https://registry.npmjs.org/fs-i/-/fs-i-1.2.2.tgz#55d69ff6afb3d6ad8a589204dc9cbf13fb1440c1"
integrity sha512-zWQfmEjxuHVx+28wdDXq+7j8ebl1nPZu8C1MqKiePHvMda4ernqaLRpiTL80or8eu4iTAGZbDQ9cIvR8oYkmbA==

fs.realpath@^1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
Expand Down Expand Up @@ -1347,10 +1342,10 @@ handlebars@^4.0.11, handlebars@^4.0.6:
optionalDependencies:
uglify-js "^3.1.4"

happywork-node-builder@^1.0.45:
version "1.0.45"
resolved "https://registry.npmjs.org/happywork-node-builder/-/happywork-node-builder-1.0.45.tgz#0c43eb363772449894c7f3fb6239b5618457987d"
integrity sha512-uqsf0F99ZKgV2LnUa3VVZ/TuI2G0mwaKH5yeAGXLgbqWk/ZYMYD6c1zC/J5CPqkPrg1/IXRc4iiEO2Tc2ROm7Q==
happywork-node-builder@^1.0.51:
version "1.0.51"
resolved "https://registry.npmjs.org/happywork-node-builder/-/happywork-node-builder-1.0.51.tgz#d5d6b37a60fa85b3573a9d307b2eb7cdf8595a2e"
integrity sha512-M/3wmdqgPAT9rR60HQTJyGw03VOxUz/24vBWm51GfvEZ60qs6W8KM+AUtpYumSgugb86NeWY9mmyCHTsGbOj/w==
dependencies:
"@babel/core" "^7.1.2"
"@babel/plugin-syntax-dynamic-import" "^7.0.0"
Expand All @@ -1369,7 +1364,6 @@ happywork-node-builder@^1.0.45:
ts-node "^7.0.1"
tslib "^1.9.3"
typedoc "^0.13.0"
typedoc-format "^1.0.22"
typescript "^3.1.3"

har-schema@^2.0.0:
Expand Down Expand Up @@ -2744,13 +2738,6 @@ typedoc-default-themes@^0.5.0:
resolved "https://registry.npmjs.org/typedoc-default-themes/-/typedoc-default-themes-0.5.0.tgz#6dc2433e78ed8bea8e887a3acde2f31785bd6227"
integrity sha1-bcJDPnjti+qOiHo6zeLzF4W9Yic=

typedoc-format@^1.0.22:
version "1.0.22"
resolved "https://registry.npmjs.org/typedoc-format/-/typedoc-format-1.0.22.tgz#32504d38a8626a4b1657d11fc038cc7af2d7a6f3"
integrity sha512-L+fW9kQFCnBNYCDqLGA4iKhwZKolUC9JQW8MlsMVSQITRWrGpRyHixKlSG4YpBez47ptloR8xOj968n6HmA5mw==
dependencies:
fs-i "^1.2.2"

typedoc@^0.13.0:
version "0.13.0"
resolved "https://registry.npmjs.org/typedoc/-/typedoc-0.13.0.tgz#9efdf352bd54873955cd161bd4b75f24a8c59dde"
Expand Down

0 comments on commit 306a225

Please sign in to comment.