Skip to content

Commit d72df68

Browse files
authored
fix: add nativescript platforms key to package json (#8)
* fix: add nativescript platforms key to package json * chore(release): 0.3.1
1 parent 3b769cf commit d72df68

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

.github/workflows/npm-publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# NPM Publish
22
# @see https://github.com/marketplace/actions/npm-publish
33

4+
name: NPM publish
5+
46
on:
5-
push:
6-
branches:
7-
- main
7+
release:
8+
types: [created]
89

910
jobs:
1011
publish:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
node_modules/
44
platforms/
55
hooks/
6+
schema/
67
dist/
78

89
# Files

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
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.
44

5+
### [0.3.1](https://github.com/bgrand-ch/nativescript-getters/compare/v0.2.0...v0.3.1) (2021-04-16)
6+
7+
8+
### Features
9+
10+
* migrate to ns8 ([#5](https://github.com/bgrand-ch/nativescript-getters/issues/5)) ([ee6ef4e](https://github.com/bgrand-ch/nativescript-getters/commit/ee6ef4edf2a284527cebd98e50d83d479326c5e1))
11+
12+
13+
### Bug Fixes
14+
15+
* add nativescript platforms key to package json ([ea4ff50](https://github.com/bgrand-ch/nativescript-getters/commit/ea4ff506d75e3a93a2d5abc8c7ecf5d3a25ca9fa))
16+
517
## [0.3.0](https://github.com/bgrand-ch/nativescript-getters/compare/v0.2.0...v0.3.0) (2021-04-16)
618

719

src/package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
{
22
"name": "nativescript-getters",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"main": "getters",
55
"typings": "index.d.ts",
66
"types": "index.d.ts",
7+
"nativescript": {
8+
"platforms": {
9+
"android": "3.0.0",
10+
"ios": "3.0.0"
11+
}
12+
},
713
"dependencies": {
814
"@nativescript/core": "8.0.1"
915
},

0 commit comments

Comments
 (0)