@nativescript-community/ui-material-core 7.2.49 → 7.2.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +12 -2
package/package.json CHANGED
@@ -1,10 +1,20 @@
1
1
  {
2
2
  "name": "@nativescript-community/ui-material-core",
3
- "version": "7.2.49",
3
+ "version": "7.2.50",
4
4
  "description": "Material Core component",
5
5
  "main": "./index",
6
6
  "sideEffects": false,
7
7
  "typings": "./index.d.ts",
8
+ "scripts": {
9
+ "tsc": "cpy '**/*.d.ts' '../../packages/core' --cwd=../../src/core --parents && tsc -d",
10
+ "tsc-win": "cpy **/*.d.ts ..\\..\\packages\\core --cwd=..\\..\\src\\core --parents && tsc -d",
11
+ "build": "npm run tsc",
12
+ "build.watch": "npm run tsc -- -w",
13
+ "build.win": "npm run tsc-win",
14
+ "build.all": "npm run build",
15
+ "build.all.win": "npm run build.win",
16
+ "clean": "rimraf ./*.d.ts ./*.js ./*.js.map android"
17
+ },
8
18
  "nativescript": {
9
19
  "platforms": {
10
20
  "android": "6.2.0",
@@ -28,5 +38,5 @@
28
38
  "homepage": "https://github.com/nativescript-community/ui-material-components",
29
39
  "repository": "https://github.com/nativescript-community/ui-material-components",
30
40
  "readmeFilename": "README.md",
31
- "gitHead": "f0efc973ad1f9b3adf0c3f0b63ac7fa7a0dba0e2"
41
+ "gitHead": "1b6dd47fd16a0139c569395ca1ffdd6e0a401c21"
32
42
  }