Skip to content

Commit b7d375c

Browse files
committed
Repo renamed
1 parent ce2374d commit b7d375c

File tree

5 files changed

+34
-16
lines changed

5 files changed

+34
-16
lines changed

README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,2 @@
1-
# FctrlxFileToBase64
2-
--- TODO ---
3-
4-
## Build
5-
6-
Run `ng build fctrlx-file-to-base64` to build the project. The build artifacts will be stored in the `dist/` directory.
7-
8-
## Publishing
9-
10-
After building your library with `ng build fctrlx-file-to-base64`, go to the dist folder `cd dist/fctrlx-angular-file-to-base64` and run `npm publish`.
1+
# Fctrlx Angular File Reader
2+
Angular library that helps convert file (from input[type=file]) to base64/arrayBuffer/text using FileReader API.

ng-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
3-
"dest": "../../dist/fctrlx-file-to-base64",
3+
"dest": "../../dist/fctrlx-angular-file-reader",
44
"lib": {
55
"entryFile": "src/public-api.ts"
66
}

package.json

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,32 @@
11
{
2-
"name": "fctrlx-file-to-base64",
3-
"version": "0.0.5",
2+
"name": "fctrlx-angular-file-reader",
3+
"version": "0.0.7",
4+
"description": "Angular library that helps convert file (from input[type=file]) to base64/arrayBuffer/text using FileReader API.",
5+
"keywords": [
6+
"angular",
7+
"angular-library",
8+
"file-reader",
9+
"input-file",
10+
"filereader",
11+
"filereader-api",
12+
"base64",
13+
"arraybuffer",
14+
"array-buffer",
15+
"filetobase64",
16+
"file-to-base64",
17+
"file-to-array"
18+
],
19+
"homepage": "https://github.com/facetrollex/fctrlx-angular-file-reader",
20+
"author": {
21+
"name": "Alexey Khamitsevich",
22+
"email": "[email protected]",
23+
"url" : "https://github.com/facetrollex"
24+
},
25+
"repository": {
26+
"type": "git",
27+
"url": "https://github.com/facetrollex/fctrlx-angular-file-reader"
28+
},
29+
"license": "MIT",
430
"peerDependencies": {
531
"@angular/common": "^7.2.0",
632
"@angular/core": "^7.2.0"

src/lib/fctrlx-file-to-base64.module.ts renamed to src/lib/fctrlx-angular-file-reader.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ import { FctrlxFileToArrayBufferDirective } from './fctrlx-file-to-array-buffer.
1616
FctrlxFileToArrayBufferDirective,
1717
],
1818
})
19-
export class FctrlxFileToBase64 { }
19+
export class FctrlxAngularFileReader { }

src/public-api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Public API Surface of fctrlx-file-to-base64
2+
* Public API Surface of fctrlx-angular-file-reader
33
*/
44

5-
export * from './lib/fctrlx-file-to-base64.module';
5+
export * from './lib/fctrlx-angular-file-reader.module';

0 commit comments

Comments
 (0)