@daiyam/artifact-npm-ts 0.3.1 → 0.4.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.
package/configs/npmignore CHANGED
@@ -1,8 +1,2 @@
1
- *
2
- */**
3
- **/.DS_Store
4
- !package.json
5
- !LICENSE
6
- !README.md
7
1
  !lib/**/*.js
8
2
  !lib/**/*.d.ts
@@ -3,10 +3,9 @@
3
3
  "scripts": {
4
4
  "compile": "tsc -p src",
5
5
  "prepublishOnly": "npm run compile",
6
- "release": "release-it",
7
- "watch": "tsc -watch -p src"
6
+ "watch:source": "tsc-watch -p src"
8
7
  },
9
8
  "devDependencies": {
10
- "release-it": "^18.1.2"
9
+ "tsc-watch": "^6.3.0"
11
10
  }
12
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daiyam/artifact-npm-ts",
3
- "version": "0.3.1",
3
+ "version": "0.4.0",
4
4
  "description": "The configuration to create node modules and publish them on npm.",
5
5
  "author": {
6
6
  "name": "Baptiste Augrain",
@@ -31,5 +31,5 @@
31
31
  "project-template",
32
32
  "scaffold"
33
33
  ],
34
- "gitHead": "f11d36be124f3e718c9344589bd6ac00639674ec"
34
+ "gitHead": "5fff6c16ace6953d55a3daee53ac9896ebf53914"
35
35
  }
@@ -1,18 +0,0 @@
1
- name: Publish Package
2
- on:
3
- push:
4
- tags:
5
- - "*"
6
- jobs:
7
- publish:
8
- runs-on: ubuntu-latest
9
- steps:
10
- - uses: actions/checkout@v4
11
- - uses: actions/setup-node@v4
12
- with:
13
- node-version: 20
14
- registry-url: 'https://registry.npmjs.org'
15
- - run: npm ci
16
- - run: npm publish --access=public
17
- env:
18
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -1,7 +0,0 @@
1
- git:
2
- commitMessage: v${version}
3
- tagName: v${version}
4
- tagAnnotation: Release version ${version}
5
- npm:
6
- publish: false
7
- disable-metrics: true
@@ -1,5 +0,0 @@
1
- {
2
- "search.exclude": {
3
- "package-lock.json": true,
4
- },
5
- }