@intelliweave/embedded 2.1.74 → 2.1.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/component/component.d.ts +1 -1
- package/dist/component/component.js +136 -80
- package/dist/intelliweave-wordpress.zip +0 -0
- package/dist/node/node.d.ts +1 -1
- package/dist/node/node.js +2 -2
- package/dist/react/react.d.ts +1 -1
- package/dist/react/react.js +54 -13
- package/dist/script-tag/script-tag.js +136 -80
- package/dist/webpack/index.d.ts +1 -1
- package/dist/webpack/index.js +53 -12
- package/package.json +2 -1
- package/.github/workflows/test-pr.yml +0 -31
- package/examples/react-test/index.html +0 -14
- package/examples/react-test/package-lock.json +0 -1844
- package/examples/react-test/package.json +0 -25
- package/examples/react-test/src/App.tsx +0 -69
- package/examples/react-test/src/main.tsx +0 -10
- package/examples/react-test/vite.config.ts +0 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intelliweave/embedded",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.76",
|
|
4
4
|
"description": "Integrate IntelliWeave into your app or website.",
|
|
5
5
|
"main": "./dist/webpack/index.js",
|
|
6
6
|
"types": "./dist/webpack/index.d.ts",
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"rehype-external-links": "^3.0.0",
|
|
68
68
|
"rehype-format": "^5.0.1",
|
|
69
69
|
"rehype-stringify": "^10.0.1",
|
|
70
|
+
"remark-gfm": "^4.0.1",
|
|
70
71
|
"remark-parse": "^11.0.0",
|
|
71
72
|
"remark-rehype": "^11.1.2",
|
|
72
73
|
"unified": "^11.0.5",
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# This action tests a PR by attempting to build the app.
|
|
3
|
-
|
|
4
|
-
name: Test
|
|
5
|
-
|
|
6
|
-
# Run on any branch
|
|
7
|
-
on:
|
|
8
|
-
workflow_dispatch: # <-- Allows you to manually trigger the workflow
|
|
9
|
-
pull_request: # <-- Run on PRs
|
|
10
|
-
|
|
11
|
-
# Set permissions to read only
|
|
12
|
-
permissions:
|
|
13
|
-
contents: read
|
|
14
|
-
pull-requests: write
|
|
15
|
-
|
|
16
|
-
# Build job
|
|
17
|
-
jobs:
|
|
18
|
-
build:
|
|
19
|
-
runs-on: ubuntu-latest
|
|
20
|
-
steps:
|
|
21
|
-
- name: Checkout
|
|
22
|
-
uses: actions/checkout@v4
|
|
23
|
-
- name: Setup Node
|
|
24
|
-
uses: actions/setup-node@v4
|
|
25
|
-
with:
|
|
26
|
-
node-version: "22"
|
|
27
|
-
cache: npm
|
|
28
|
-
- name: Install dependencies
|
|
29
|
-
run: npm install
|
|
30
|
-
- name: Build
|
|
31
|
-
run: npm run test
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8" />
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
-
<title>WebWeaver React Test</title>
|
|
7
|
-
</head>
|
|
8
|
-
<body>
|
|
9
|
-
<div id="root"></div>
|
|
10
|
-
<script type="module" src="/src/main.tsx"></script>
|
|
11
|
-
</body>
|
|
12
|
-
</html>
|
|
13
|
-
|
|
14
|
-
|