Skip to content

Commit

Permalink
Merge pull request #26 from nice-registry/refactoring
Browse files Browse the repository at this point in the history
Use all-the-package-repos as a source of package names
  • Loading branch information
zarianec authored Feb 7, 2022
2 parents bba7ca9 + 4ff3666 commit 17676a8
Show file tree
Hide file tree
Showing 9 changed files with 2,412 additions and 80 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Release

on:
schedule:
- cron: "0 */6 * * *"

jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.ZEKE_PAT_WITH_REPO_AND_WORKFLOW_ACCESS }}
- uses: actions/setup-node@v2
with:
node-version: '16'
- name: Update and Publish
run: |
git config --global user.name "github-actions"
git config --global user.email "[email protected]"
npm update all-the-package-repos
npm run build
npm test
[[ `git status --porcelain` ]] || exit
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
git add .
# bump the version, commit, and create a tag
npm version patch -f -m "update all-the-package-names to %s"

git push origin master --follow-tags
npm publish
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
node_modules
skimdb.json
package-lock.json
10 changes: 0 additions & 10 deletions example.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
const names = require('./')

// Most-depended-on names are first. See what's popular!
names.slice(0,5)
// [
// 'mocha',
// 'chai',
// 'lodash',
// 'grunt',
// 'eslint'
// ]

names.includes('superagent')
// => true

Expand Down
Loading

0 comments on commit 17676a8

Please sign in to comment.