We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea4bfbb commit 954cc01Copy full SHA for 954cc01
.github/workflows/release-please.yml
@@ -40,6 +40,8 @@ jobs:
40
cache: 'npm'
41
- name: Install dependencies
42
run: npm ci
43
+ - name: Build the package
44
+ run: npm run build
45
- name: Publish to NPMJS.org
46
run: npm publish --provenance --access public
47
env:
package.json
@@ -3,8 +3,8 @@
3
"version": "0.0.9",
4
"description": "OpenSCD API for IEC 61850 SCL files",
5
"type": "module",
6
- "main": "./oscd-api.js",
7
- "types": "./oscd-api.d.ts",
+ "main": "./dist/oscd-api.js",
+ "types": "./dist/oscd-api.d.ts",
8
"scripts": {
9
"lint": "eslint . && prettier \"**/*.ts\" --check --ignore-path .gitignore",
10
"format": "eslint . --fix && prettier \"**/*.ts\" --write --ignore-path .gitignore",
0 commit comments