Skip to content

Commit

Permalink
fix: add nativescript platforms key to package json (#8)
Browse files Browse the repository at this point in the history
* fix: add nativescript platforms key to package json

* chore(release): 0.3.1
  • Loading branch information
bgrand-ch authored Apr 16, 2021
1 parent 3b769cf commit d72df68
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# NPM Publish
# @see https://github.com/marketplace/actions/npm-publish

name: NPM publish

on:
push:
branches:
- main
release:
types: [created]

jobs:
publish:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
node_modules/
platforms/
hooks/
schema/
dist/

# Files
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.3.1](https://github.com/bgrand-ch/nativescript-getters/compare/v0.2.0...v0.3.1) (2021-04-16)


### Features

* migrate to ns8 ([#5](https://github.com/bgrand-ch/nativescript-getters/issues/5)) ([ee6ef4e](https://github.com/bgrand-ch/nativescript-getters/commit/ee6ef4edf2a284527cebd98e50d83d479326c5e1))


### Bug Fixes

* add nativescript platforms key to package json ([ea4ff50](https://github.com/bgrand-ch/nativescript-getters/commit/ea4ff506d75e3a93a2d5abc8c7ecf5d3a25ca9fa))

## [0.3.0](https://github.com/bgrand-ch/nativescript-getters/compare/v0.2.0...v0.3.0) (2021-04-16)


Expand Down
8 changes: 7 additions & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
{
"name": "nativescript-getters",
"version": "0.3.0",
"version": "0.3.1",
"main": "getters",
"typings": "index.d.ts",
"types": "index.d.ts",
"nativescript": {
"platforms": {
"android": "3.0.0",
"ios": "3.0.0"
}
},
"dependencies": {
"@nativescript/core": "8.0.1"
},
Expand Down

0 comments on commit d72df68

Please sign in to comment.