We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4188e74 commit a7bb3e6Copy full SHA for a7bb3e6
2 files changed
.github/workflows/basics.yml
@@ -11,6 +11,8 @@ jobs:
11
workdir: basics
12
steps:
13
- uses: actions/checkout@v2
14
+ - name: Setup README and LICENSE files
15
+ run: cp README.md ${{ env.workdir }}/ && cp LICENSE ${{ env.workdir }}/
16
- uses: actions/setup-node@v1
17
with:
18
node-version: '14.x'
basics/package.json
@@ -1,9 +1,12 @@
1
{
2
"name": "@jvalue/node-dry-basics",
3
- "version": "0.0.1",
+ "version": "0.0.2",
4
"description": "Reusable libraries for our node projects (NOT containing any dependencies)",
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
7
+ "files": [
8
+ "/dist"
9
+ ],
10
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --fix",
0 commit comments