@zentered/issue-forms-body-parser 1.4.1 → 1.4.2

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/.eslintignore CHANGED
@@ -1,3 +1,5 @@
1
1
  dist/
2
+ action/
3
+ pkg/
2
4
  coverage/
3
5
  test/
@@ -0,0 +1 @@
1
+ {"parent":null,"pid":1749,"argv":["/usr/local/bin/node","/home/runner/work/issue-forms-body-parser/issue-forms-body-parser/node_modules/.bin/tap","--node-arg=--experimental-json-modules","--test-env=GITHUB_REPOSITORY=zentered/issue-forms-body-parser-test","-J","test/parse-issue.test.js"],"execArgv":[],"cwd":"/home/runner/work/issue-forms-body-parser/issue-forms-body-parser","time":1649743490042,"ppid":1738,"coverageFilename":"/home/runner/work/issue-forms-body-parser/issue-forms-body-parser/.nyc_output/51515bde-d360-43af-9735-c6f3cb6894f8.json","externalId":"","uuid":"51515bde-d360-43af-9735-c6f3cb6894f8","files":[]}
@@ -0,0 +1 @@
1
+ {"parent":"51515bde-d360-43af-9735-c6f3cb6894f8","pid":1760,"argv":["/usr/local/bin/node","/home/runner/work/issue-forms-body-parser/issue-forms-body-parser/test/parse-issue.test.js"],"execArgv":["--experimental-json-modules"],"cwd":"/home/runner/work/issue-forms-body-parser/issue-forms-body-parser","time":1649743490450,"ppid":1749,"coverageFilename":"/home/runner/work/issue-forms-body-parser/issue-forms-body-parser/.nyc_output/734d5a73-99f9-445f-a028-1b09587e3677.json","externalId":"test/parse-issue.test.js","uuid":"734d5a73-99f9-445f-a028-1b09587e3677","files":[]}
@@ -0,0 +1 @@
1
+ {"processes":{"51515bde-d360-43af-9735-c6f3cb6894f8":{"parent":null,"children":["734d5a73-99f9-445f-a028-1b09587e3677"]},"734d5a73-99f9-445f-a028-1b09587e3677":{"parent":"51515bde-d360-43af-9735-c6f3cb6894f8","externalId":"test/parse-issue.test.js","children":[]}},"files":{},"externalIds":{"test/parse-issue.test.js":{"root":"734d5a73-99f9-445f-a028-1b09587e3677","children":[]}}}
package/action.yml CHANGED
@@ -11,5 +11,5 @@ outputs:
11
11
  description:
12
12
  The extracted payload data from the issue body labels in JSON encoded form
13
13
  runs:
14
- main: dist/index.js
14
+ main: action/index.js
15
15
  using: node16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zentered/issue-forms-body-parser",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "private": false,
5
5
  "description": "Parser for GitHub Issue Form body, also available as GitHub Action",
6
6
  "keywords": [
@@ -30,15 +30,15 @@
30
30
  "type": "module",
31
31
  "src": "src/parse.js",
32
32
  "exports": {
33
- "require": "./dist/parse.js",
34
- "default": "./dist/parse.modern.js"
33
+ "require": "./pkg/parse.cjs",
34
+ "default": "./pkg/parse.modern.js"
35
35
  },
36
- "main": "./dist/parse.cjs",
37
- "module": "./dist/parse.module.js",
36
+ "main": "./pkg/parse.cjs",
37
+ "module": "./pkg/parse.module.js",
38
38
  "scripts": {
39
39
  "build": "run-p build:*",
40
40
  "build:package": "microbundle",
41
- "build:action": "ncc build src/index.js -o dist --license licenses.txt",
41
+ "build:action": "ncc build src/index.js -o action --license licenses.txt",
42
42
  "release": "run-s lint test build",
43
43
  "lint": "eslint .",
44
44
  "license-checker": "license-checker --production --onlyAllow=\"MIT;ISC;BSD-3-Clause;BSD-2-Clause;Apache-2.0\"",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes