Skip to content

Commit 82b8d4c

Browse files
committed
refactor: regenerate piece to name pdf
1 parent b63680e commit 82b8d4c

13 files changed

+83
-76
lines changed

.eslintrc.base.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"root": true,
3+
"ignorePatterns": ["**/*"],
4+
"plugins": ["@nx"],
5+
"overrides": [
6+
{
7+
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
8+
"rules": {
9+
"@nx/enforce-module-boundaries": [
10+
"error",
11+
{
12+
"enforceBuildableLibDependency": true,
13+
"allow": [],
14+
"depConstraints": [
15+
{
16+
"sourceTag": "*",
17+
"onlyDependOnLibsWithTags": ["*"]
18+
}
19+
]
20+
}
21+
]
22+
}
23+
},
24+
{
25+
"files": ["*.ts", "*.tsx"],
26+
"extends": ["plugin:@nx/typescript"],
27+
"rules": {}
28+
},
29+
{
30+
"files": ["*.js", "*.jsx"],
31+
"extends": ["plugin:@nx/javascript"],
32+
"rules": {}
33+
}
34+
]
35+
}
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# pieces-PDF
2+
3+
This library was generated with [Nx](https://nx.dev).
4+
5+
## Building
6+
7+
Run `nx build pieces-PDF` to build the library.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "@activepieces/piece-PDF",
3+
"version": "0.0.1"
4+
}
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "pieces-PDF",
3+
"$schema": "../../../../node_modules/nx/schemas/project-schema.json",
4+
"sourceRoot": "packages/pieces/community/PDF/src",
5+
"projectType": "library",
6+
"targets": {
7+
"build": {
8+
"executor": "@nx/js:tsc",
9+
"outputs": ["{options.outputPath}"],
10+
"options": {
11+
"outputPath": "dist/packages/pieces/community/PDF",
12+
"tsConfig": "packages/pieces/community/PDF/tsconfig.lib.json",
13+
"packageJson": "packages/pieces/community/PDF/package.json",
14+
"main": "packages/pieces/community/PDF/src/index.ts",
15+
"assets": ["packages/pieces/community/PDF/*.md"]
16+
}
17+
},
18+
"publish": {
19+
"command": "node tools/scripts/publish.mjs pieces-PDF {args.ver} {args.tag}",
20+
"dependsOn": ["build"]
21+
}
22+
},
23+
"tags": []
24+
}
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
import { createPiece, PieceAuth } from "@activepieces/pieces-framework";
3+
4+
export const PDF = createPiece({
5+
displayName: "Pdf",
6+
auth: PieceAuth.None(),
7+
minimumSupportedRelease: '0.20.0',
8+
logoUrl: "https://cdn.activepieces.com/pieces/PDF.png",
9+
authors: [],
10+
actions: [],
11+
triggers: [],
12+
});
13+

packages/pieces/community/pdf-to-text/README.md

-7
This file was deleted.

packages/pieces/community/pdf-to-text/package.json

-9
This file was deleted.

packages/pieces/community/pdf-to-text/project.json

-24
This file was deleted.

packages/pieces/community/pdf-to-text/src/index.ts

-12
This file was deleted.

packages/pieces/community/pdf-to-text/src/lib/actions/pdf-to-text.ts

-24
This file was deleted.

0 commit comments

Comments
 (0)