Skip to content

Commit

Permalink
Merge branch 'release/v1.1.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelBinpar committed May 27, 2020
2 parents a56b07a + c4f4e4a commit 3f1f85e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ yarn-debug.log*
yarn-error.log*

# Compiled version
bin
dist

# Runtime data
pids
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@a2r/fs",
"version": "1.1.0",
"version": "1.1.4",
"description": "A2R file system library",
"main": "./index.js",
"types": "./index.d.ts",
Expand All @@ -10,11 +10,11 @@
"scripts": {
"build": "tsc",
"dev": "NODE_ENV=development ts-node-dev --debug --respawn --transpileOnly ./index.ts",
"upload": "npm run build;cp .snyk ./bin/.snyk;cd bin;npm i;npm publish --access=public;",
"start": "node ./bin/index.js",
"upload": "npm run build;cp .snyk ./dist/.snyk;cd dist;npm i;npm publish --access=public;",
"start": "node ./dist/index.js",
"lint": "npx eslint --config ./.eslintrc ./**/*.ts",
"test": "jest",
"test-clear": "rm -rf coverage;rm -rf bin",
"test-clear": "rm -rf coverage;rm -rf dist",
"test-dev": "NODE_ENV=development npx jest --watch",
"test-coverage": "jest --coverage",
"test-coverage-dev": "NODE_ENV=development jest --coverage --watchAll",
Expand Down
1 change: 1 addition & 0 deletions tools/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ export const getFilesRecursively = async (
* Copies contents recursively from `fromPath` to `destPath`
* @param {string} fromPath Source path
* @param {string} destPath Destination path
* @param {boolean} hard Hard mode (overwrites existing files)
* @param {string} [relativePath=''] Relative path
*/
export const copyContents = async (
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"sourceMap": true,
"skipLibCheck": true,
"baseUrl": ".",
"outDir": "./bin",
"outDir": "./dist",
"rootDir": ".",
"extendedDiagnostics": true,
"typeRoots": [
Expand All @@ -32,6 +32,7 @@
},
"exclude": [
"node_modules",
"dist",
"test/**/*.ts"
],
"include": [
Expand Down

0 comments on commit 3f1f85e

Please sign in to comment.