ropegeo-common 1.0.0

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.
@@ -0,0 +1,28 @@
1
+ name: Publish to npm
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ permissions:
9
+ id-token: write # Required for npm trusted publishing (OIDC)
10
+ contents: read
11
+
12
+ jobs:
13
+ publish:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+
18
+ - name: Setup Node.js
19
+ uses: actions/setup-node@v4
20
+ with:
21
+ node-version: "22"
22
+ registry-url: "https://registry.npmjs.org"
23
+
24
+ - name: Install dependencies
25
+ run: npm install
26
+
27
+ - name: Publish to npm
28
+ run: npm publish
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "ropegeo-common",
3
+ "version": "1.0.0",
4
+ "description": "A package for common code used by RopeGeo and its backend services",
5
+ "license": "ISC",
6
+ "author": "",
7
+ "type": "commonjs",
8
+ "main": "index.js",
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ }
12
+ }