Skip to content

Commit 1342f0c

Browse files
committed
fix issue related to seeders-path not found
1.1.0 1.1.1 add package-lock
1 parent a5f2f37 commit 1342f0c

File tree

6 files changed

+5815
-16
lines changed

6 files changed

+5815
-16
lines changed

.github/workflows/npm-publish.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3+
4+
name: Publish to NPM
5+
6+
on:
7+
push:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: actions/setup-node@v1
17+
with:
18+
node-version: 12.x
19+
registry-url: https://registry.npmjs.org/
20+
- run: npm ci
21+
- run: npm publish --access public
22+
env:
23+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
logs
33
*.log
44

5+
# yarn lock
6+
*.lock
7+
58
# Editor files
69
.vscode
710

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## 1.0.6- 22th, Dec, 2020
5+
### Fixed
6+
- Added `seeders-path` to baseOption in `/src/core/yargs.js`
7+
48
## 1.0.5 - 28th, Sep, 2019
59
### Changed
610
- docs(README.md): fixed typos, and replaced examples methods from global usage to local(project based) using npx. Fixed links related to Github generated links to display full-path of links in npmjs' website.

0 commit comments

Comments
 (0)