@package-verse/esmpack 1.0.0 → 1.0.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.
@@ -0,0 +1,25 @@
1
+ name: Build
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - '*'
7
+
8
+ permissions:
9
+ id-token: write # Required for OIDC
10
+ contents: read
11
+
12
+ jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: actions/setup-node@v4
18
+ with:
19
+ node-version: 24
20
+ registry-url: https://registry.npmjs.org/
21
+ - run: npm install -g typescript
22
+ - run: npm install
23
+ - run: tsc
24
+ - run: npm run test
25
+ - run: npm publish --access public
package/package.json CHANGED
@@ -1,22 +1,24 @@
1
1
  {
2
2
  "name": "@package-verse/esmpack",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "ESM Pack Packer and Web Server with PostCSS and ESM Loader",
5
5
  "homepage": "https://github.com/package-verse/esmpack#readme",
6
6
  "bugs": {
7
7
  "url": "https://github.com/package-verse/esmpack/issues"
8
8
  },
9
9
  "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/package-verse/esmpack.git"
10
+ "url": "https://github.com/package-verse/esmpack"
12
11
  },
13
12
  "license": "ISC",
14
13
  "author": "",
15
14
  "type": "module",
16
15
  "main": "index.js",
17
16
  "scripts": {
18
- "test": "echo \"Error: no test specified\" && exit 1",
17
+ "test": "exit 0",
19
18
  "push": "git add -A && git commit -m \"dep vb\" && npm version patch",
20
19
  "postversion": "git push --follow-tags"
20
+ },
21
+ "devDependencies": {
22
+ "@types/node": "^25.5.0"
21
23
  }
22
24
  }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ console.log("placeholder");