Skip to content

Commit

Permalink
chore: Release 0.1.0-beta.6
Browse files Browse the repository at this point in the history
  • Loading branch information
npalm committed Mar 7, 2021
1 parent 5b220b8 commit e7fc175
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "action-docs",
"version": "0.1.0-beta.5",
"version": "0.1.0-beta.6",
"description": "Generate GitHub action docs based on action.yml",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"action-docs": "dist/cli.js"
"action-docs": "lib/cli.js"
},
"scripts": {
"build": "tsc",
Expand Down Expand Up @@ -39,7 +39,7 @@
"yargs": "^16.2.0"
},
"files": [
"dist/**/*",
"lib/**/*",
"README.md"
],
"devDependencies": {
Expand Down Expand Up @@ -73,6 +73,6 @@
},
"homepage": "https://github.com/npalm/action-docs#readme",
"directories": {
"dist": "dist"
"dist": "lib"
}
}
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"compilerOptions": {
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"outDir": "./dist", /* Redirect output structure to the directory. */
"outDir": "./lib", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"declaration": true
},
"exclude": ["node_modules", "**/*.test.ts", "dist"],
"exclude": ["node_modules", "**/*.test.ts", "lib"],

}

0 comments on commit e7fc175

Please sign in to comment.