Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
Lib-PDF
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Code
JS Toolbox
Lib-PDF
Commits
0bbe8de4
Commit
0bbe8de4
authored
3 years ago
by
Zdravko Iliev
Browse files
Options
Downloads
Patches
Plain Diff
fix build
parent
471b97ef
No related branches found
No related tags found
1 merge request
!1
Draft: Resolve "[Document Sealing] Implement PDF parser"
Pipeline
#47765
passed with stages
in 40 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dist/index.js
+4
-1
4 additions, 1 deletion
dist/index.js
dist/pdfParser.js
+4
-1
4 additions, 1 deletion
dist/pdfParser.js
tsconfig.json
+1
-1
1 addition, 1 deletion
tsconfig.json
with
9 additions
and
3 deletions
dist/index.js
+
4
−
1
View file @
0bbe8de4
"
use strict
"
;
var
__importDefault
=
(
this
&&
this
.
__importDefault
)
||
function
(
mod
)
{
return
(
mod
&&
mod
.
__esModule
)
?
mod
:
{
"
default
"
:
mod
};
};
Object
.
defineProperty
(
exports
,
"
__esModule
"
,
{
value
:
true
});
const
pdfParser_1
=
require
(
"
./pdfParser
"
);
const
pdfParser_1
=
__importDefault
(
require
(
"
./pdfParser
"
)
)
;
exports
.
default
=
pdfParser_1
.
default
;
This diff is collapsed.
Click to expand it.
dist/pdfParser.js
+
4
−
1
View file @
0bbe8de4
...
...
@@ -8,8 +8,11 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
step
((
generator
=
generator
.
apply
(
thisArg
,
_arguments
||
[])).
next
());
});
};
var
__importDefault
=
(
this
&&
this
.
__importDefault
)
||
function
(
mod
)
{
return
(
mod
&&
mod
.
__esModule
)
?
mod
:
{
"
default
"
:
mod
};
};
Object
.
defineProperty
(
exports
,
"
__esModule
"
,
{
value
:
true
});
const
verify_pdf_1
=
require
(
"
@ninja-labs/verify-pdf
"
);
const
verify_pdf_1
=
__importDefault
(
require
(
"
@ninja-labs/verify-pdf
"
)
)
;
const
pdfdataextract_1
=
require
(
"
pdfdataextract
"
);
const
config_1
=
require
(
"
./config
"
);
class
PDFparser
{
...
...
This diff is collapsed.
Click to expand it.
tsconfig.json
+
1
−
1
View file @
0bbe8de4
...
...
@@ -5,7 +5,7 @@
"declaration"
:
true
,
"outDir"
:
"./dist"
,
"allowJs"
:
true
,
"
allowSyntheticDefaultImports
"
:
true
"
esModuleInterop
"
:
true
},
"include"
:
[
"src/**/*"
]
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment