Skip to content
This repository was archived by the owner on Nov 21, 2020. It is now read-only.

Commit 8eb728d

Browse files
committed
bump to 1.2.0 and improve package publish
1 parent 82f1ea1 commit 8eb728d

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.npmignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
test/
22
.gitignore
3-
.eslintrc
3+
.eslintrc
4+
coverage/
5+
.github/
6+
*.jpg
7+
*.txt
8+
*.hbs

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "file-utils-easy",
3-
"version": "1.1.2",
3+
"version": "1.2.0",
44
"description": "The simplest file utils",
55
"main": "index.js",
66
"scripts": {

test/file-utils-easy.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe('write tests', () => {
3535
});
3636
});
3737

38-
describe('append tests', () => {
38+
describe('append tests', () => {
3939
it('create with append relative', async () => {
4040
const fileContent = 'Hello world';
4141
const filePath = 'test/assets/append.txt';
@@ -44,7 +44,7 @@ describe('append tests', () => {
4444
} catch (err) { }
4545
return expect(fue.appendToFile(fileContent, filePath)).resolves.toEqual(filePath);
4646
});
47-
47+
4848
it('append relative', async () => {
4949
const fileContent = 'Hello world';
5050
const filePath = 'test/assets/append.txt';

0 commit comments

Comments
 (0)