Skip to content

Commit

Permalink
Merge branch 'release/v1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelBinpar committed May 26, 2020
2 parents d783f88 + 3876aed commit b6012df
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Node Boilerplate

[![Build Status](https://travis-ci.org/acttoreact/fs.svg?branch=master)](https://travis-ci.org/acttoreact/fs) [![Coverage Status](https://coveralls.io/repos/github/acttoreact/fs/badge.svg?branch=master)](https://coveralls.io/github/acttoreact/fs) [![npm](https://img.shields.io/npm/v/@a2r/fs)](https://www.npmjs.com/package/@a2r/fs) [![Snyk Vulnerabilities for GitHub Repo](https://img.shields.io/snyk/vulnerabilities/github/acttoreact/fs)](https://snyk.io/test/github/acttoreact/fs) [![node-current](https://img.shields.io/node/v/@a2r/fs)](https://www.npmjs.com/package/@a2r/fs) [![GitHub](https://img.shields.io/github/license/acttoreact/fs)](https://github.com/acttoreact/fs/blob/develop/license.md) [![Documentation](https://img.shields.io/badge/documentation-ready-green)](https://htmlpreview.github.io/?https://github.com/acttoreact/fs/blob/develop/docs/jsdocs/index.html#readDir)

Node Boilerplate for A2r TypeScript Projects
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import packageJSON from './package.json';

export const {version} = packageJSON;
export const { version } = packageJSON;

export * from './tools/fs';
export * from './tools/fs';
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@a2r/fs",
"version": "0.1.0",
"version": "1.0.0",
"description": "A2R file system library",
"main": "./index.js",
"types": "./index.d.ts",
Expand All @@ -10,7 +10,7 @@
"scripts": {
"build": "tsc",
"dev": "NODE_ENV=development ts-node-dev --debug --respawn --transpileOnly ./index.ts",
"upload": "npm run build;cp .snyk ./bin/.snyk;cd dist;npm i;npm publish --access=public;",
"upload": "npm run build;cp .snyk ./bin/.snyk;cd bin;npm i;npm publish --access=public;",
"start": "node ./bin/index.js",
"lint": "npx eslint --config ./.eslintrc ./**/*.ts",
"test": "jest",
Expand Down

0 comments on commit b6012df

Please sign in to comment.