Skip to content

Commit ffc1b6e

Browse files
Merge pull request #3 from kaferi/master
Fixed main packege path
2 parents a091fa3 + 5343293 commit ffc1b6e

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
wwwroot/*.js
1+
*.js
2+
*.d.ts
3+
*.js.map
24
node_modules
35
typings

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
**/*
2+
!src/**/*
3+
!package.json
4+
!LICENSE
5+
!README.md

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "asposepdfcloud",
3-
"version": "18.7.0",
3+
"version": "18.7.2",
44
"description": "Aspose.PDF Cloud SDK",
55
"homepage": "https://products.aspose.cloud/pdf/cloud",
66
"author": {
@@ -20,8 +20,8 @@
2020
"PDF"
2121
],
2222
"readmeFilename": "README.md",
23-
"main": "dist/api/api.js",
24-
"types": "dist/api/api.d.ts",
23+
"main": "src/api/api.js",
24+
"types": "src/api/api.d.ts",
2525
"scripts": {
2626
"clean": "rm -Rf node_modules/ typings/ *.js",
2727
"build": "tsc",

0 commit comments

Comments
 (0)