Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "@draftbit/core",
"version": "54.0.7",
"description": "Core (non-native) Components",
"main": "lib/commonjs/index.js",
"main": "./src/index.tsx",
"react-native": "./src/index.tsx",
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
Expand All @@ -14,8 +15,7 @@
"scripts": {
"clean": "rimraf lib",
"clean:modules": "rimraf node_modules",
"build:commonjs": "../../node_modules/.bin/babel src --out-dir lib/commonjs --extensions .tsx,.ts,.js,.jsx",
"build": "yarn clean && yarn build:commonjs && yarn tsc",
"build": "yarn clean && yarn tsc",
"test": "jest",
"test:coverage": "jest --coverage"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/maps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "@draftbit/maps",
"version": "54.0.7",
"description": "Map Components",
"main": "lib/commonjs/index.js",
"main": "./src/index.tsx",
"react-native": "./src/index.tsx",
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
Expand All @@ -14,8 +15,7 @@
"scripts": {
"clean": "rimraf lib",
"clean:modules": "rimraf node_modules",
"build:commonjs": "../../node_modules/.bin/babel src --out-dir lib/commonjs --extensions .tsx,.ts,.js,.jsx",
"build": "yarn clean && yarn build:commonjs && yarn tsc",
"build": "yarn clean && yarn tsc",
"test": "jest",
"test:coverage": "jest --coverage"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "@draftbit/native",
"version": "54.0.7",
"description": "Draftbit UI Components that Depend on Native Components",
"main": "lib/commonjs/index.js",
"main": "./src/index.tsx",
"react-native": "./src/index.tsx",
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
Expand All @@ -14,8 +15,7 @@
"scripts": {
"clean": "rimraf lib",
"clean:modules": "rimraf node_modules",
"build:commonjs": "../../node_modules/.bin/babel src --out-dir lib/commonjs --extensions .tsx,.ts,.js,.jsx",
"build": "yarn clean && yarn build:commonjs && yarn tsc",
"build": "yarn clean && yarn tsc",
"test": "jest",
"test:coverage": "jest --coverage"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "@draftbit/theme",
"version": "54.0.7",
"description": "Draftbit's themeing system",
"main": "lib/commonjs/index.js",
"main": "./src/index.ts",
"react-native": "./src/index.ts",
Comment thread
YoussefHenna marked this conversation as resolved.
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
Expand All @@ -14,8 +15,7 @@
"scripts": {
"clean": "rimraf lib",
"clean:modules": "rimraf node_modules",
"build:commonjs": "../../node_modules/.bin/babel src --out-dir lib/commonjs --extensions .tsx,.ts,.js,.jsx",
"build": "yarn clean && yarn build:commonjs && yarn tsc",
"build": "yarn clean && yarn tsc",
"test": "jest",
"test:coverage": "jest --coverage"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "@draftbit/ui",
"version": "54.0.7",
"description": "Draftbit UI Library",
"main": "lib/commonjs/index.js",
"main": "./src/index.tsx",
"react-native": "./src/index.tsx",
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
Expand All @@ -18,8 +19,7 @@
"scripts": {
"clean": "rimraf lib",
"clean:modules": "rimraf node_modules",
"build:commonjs": "../../node_modules/.bin/babel src --out-dir lib/commonjs --extensions .tsx,.ts,.js,.jsx",
"build": "yarn clean && yarn build:commonjs && yarn tsc",
"build": "yarn clean && yarn tsc",
"test": "jest",
"test:coverage": "jest --coverage"
},
Expand Down
Loading