@sanity/logos
Advanced tools
Comparing version 1.0.0-beta.2 to 1.0.0-beta.3
{ | ||
"name": "@sanity/logos", | ||
"version": "1.0.0-beta.2", | ||
"version": "1.0.0-beta.3", | ||
"main": "dist/cjs/index.js", | ||
@@ -13,4 +13,4 @@ "module": "dist/es/index.js", | ||
"build": "run-p build-*", | ||
"build-cjs": "tsc --module CommonJS --outDir dist/cjs --project tsconfig.dist.json --rootDir ./src --target ES5", | ||
"build-es": "tsc --module ES6 --outDir dist/es --project tsconfig.dist.json --rootDir ./src --target ES6", | ||
"build-cjs": "tsc --module CommonJS --outDir dist/cjs --project tsconfig.dist.json --rootDir src --target ES5", | ||
"build-es": "tsc --module ES6 --outDir dist/es --project tsconfig.dist.json --rootDir src --target ES6", | ||
"clean": "rimraf dist", | ||
@@ -20,6 +20,9 @@ "lint": "eslint . --ext .js,.jsx,.mjs,.ts,.tsx", | ||
"prepublishOnly": "npm run build", | ||
"type-check": "tsc --noEmit" | ||
"type-check": "tsc --noEmit", | ||
"watch": "run-p watch-cjs watch-es", | ||
"watch-cjs": "tsc --preserveWatchOutput -w --module CommonJS --outDir dist/cjs --project tsconfig.dist.json --rootDir src --target ES5", | ||
"watch-es": "tsc --preserveWatchOutput -w --module ES6 --outDir dist/es --project tsconfig.dist.json --rootDir src --target ES6" | ||
}, | ||
"devDependencies": { | ||
"@sanity/color": "^2.0.8", | ||
"@sanity/color": "^2.0.9", | ||
"react": "17.0.1" | ||
@@ -48,3 +51,3 @@ }, | ||
}, | ||
"gitHead": "9eddf710104e5886dcb0bc3382726143c068477f" | ||
"gitHead": "0a0322af525b7fe56e3a33edc364199209d3bafd" | ||
} |
35593