@savicheema/react-drag-drop-list 0.9.2 → 0.9.3

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/index.mjs ADDED
@@ -0,0 +1,14 @@
1
+ import {jsx as $4MPRY$jsx, Fragment as $4MPRY$Fragment} from "react/jsx-runtime";
2
+ import "react";
3
+
4
+
5
+
6
+ function $090815f5086f7f29$export$86fbec116b87613f() {
7
+ return /*#__PURE__*/ (0, $4MPRY$jsx)((0, $4MPRY$Fragment), {
8
+ children: "App"
9
+ });
10
+ }
11
+
12
+
13
+ export {$090815f5086f7f29$export$86fbec116b87613f as App};
14
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"mappings":";;;;;AAEO,SAAS;IACd,qBAAO;kBAAE;;AACX","sources":["src/index.tsx"],"sourcesContent":["import React from \"react\";\n\nexport function App() {\n return <>App</>;\n}\n"],"names":[],"version":3,"file":"index.mjs.map"}
@@ -0,0 +1,4 @@
1
+ import { JSX } from "react/jsx-runtime";
2
+ export function App(): JSX.Element;
3
+
4
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"mappings":";AAEA,mCAEC","sources":["src/src/index.tsx","src/index.tsx"],"sourcesContent":[null,"import React from \"react\";\n\nexport function App() {\n return <>App</>;\n}\n"],"names":[],"version":3,"file":"types.d.ts.map"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savicheema/react-drag-drop-list",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "description": "react drag drop list",
5
5
  "keywords": [
6
6
  "drag",
@@ -1,36 +0,0 @@
1
- # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
- # For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3
-
4
- name: Node.js Package
5
-
6
- on:
7
- release:
8
- types: [created]
9
- push:
10
- branches:
11
- - main
12
-
13
- jobs:
14
- build:
15
- runs-on: ubuntu-latest
16
- steps:
17
- - uses: actions/checkout@v4
18
- - uses: actions/setup-node@v4
19
- with:
20
- node-version: 20
21
- - run: npm ci
22
- - run: npm run build
23
-
24
- publish-npm:
25
- needs: build
26
- runs-on: ubuntu-latest
27
- steps:
28
- - uses: actions/checkout@v4
29
- - uses: actions/setup-node@v4
30
- with:
31
- node-version: 20
32
- registry-url: https://registry.npmjs.org/
33
- - run: npm ci
34
- - run: npm publish --access=public
35
- env:
36
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN_DRAG_DROP}}