Skip to content

Commit

Permalink
Merge pull request #95 from holochain/rename-npm-package
Browse files Browse the repository at this point in the history
rename NPM package & clean up & bump versions & fix CI
  • Loading branch information
jost-s authored Jan 13, 2022
2 parents fbeae55 + 7206e6b commit 73641a0
Show file tree
Hide file tree
Showing 38 changed files with 1,751 additions and 3,753 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ module.exports = {
'semi': ['error', 'never'],
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-empty-function': 'off'
'@typescript-eslint/no-empty-function': 'off',
},
}
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ jobs:
ubuntu-latest,
# macos-latest re-enable later, too slow.
]
node: [ 14.x ] # '10', '12', to speed up CI for now
node: [ 16.x ] # '10', '12', '14' to speed up CI for now
steps:
- name: Fetch source code
uses: actions/checkout@v2
- name: Use Nix
uses: cachix/install-nix-action@v12
uses: cachix/install-nix-action@v16
with:
nix_path: nixpkgs=channel:nixos-21.11
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
Expand Down
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
node_modules/
lib/
test/e2e/fixture/test.dna.workdir/wasms
.DS_Store
.cargo
target
lib.es/
node_modules
/lib
.tsbuildinfo
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Removed
### Changed
### Fixed

## 2022-01-12: v0.3.0

### Added
- Adding types and `dump full state` call [#94](https://github.com/holochain/holochain-conductor-api/pull/94)

### Removed
- Everything that's not needed to use the library, run tests or publish the npm package
### Changed
- Renamed package to @holochain/client and repository to holochain-client-js
- Use git tag instead of revision SHA for version mentions [#92](https://github.com/holochain/holochain-conductor-api/pull/92)
- Updated to Holochain v0.0.121 and HDK v0.0.117
### Fixed
- Failed tests cause non-zero exit code [#93](https://github.com/holochain/holochain-conductor-api/pull/93)
## 2021-10-28: v0.2.3

### Fixed
Expand Down
Loading

0 comments on commit 73641a0

Please sign in to comment.