feat: api reorg #118

Merged
mcataford merged 6 commits from feat/api-reorg into main 2023-06-27 17:54:34 +00:00
2 changed files with 6 additions and 11 deletions
Showing only changes of commit c21884e5a8 - Show all commits

View file

@ -8,15 +8,14 @@
"packages/*"
],
"scripts": {
"start": "netlify dev",
"start:parcel": "parcel serve packages/app/src/index.html",
"lint": "eslint src",
"lint:fix": "eslint src netlify --fix",
"start:app": "yarn workspace app start",
"lint": "eslint packages",
"lint:fix": "eslint packages netlify --fix",
"types": "tsc --noEmit",
"clean": "rm -rf dist/*",
"build": "parcel build src/index.html",
"build:watch": "parcel watch src/index.html",
"build:bundlesize": "parcel build src/index.html --reporter @parcel/reporter-bundle-analyzer"
"build:app": "yarn workspace app build",
"build:app:watch": "yarn workspace app watch",
"build:app:bundlesize": "yarn workspace app build:bundlesize"
},
"devDependencies": {
"@parcel/reporter-bundle-analyzer": "^2.9.3",

View file

@ -7,10 +7,6 @@
"scripts": {
"start": "netlify dev",
"start:parcel": "parcel serve src/index.html",
"lint": "eslint src",
"lint:fix": "eslint src netlify --fix",
"types": "tsc --noEmit",
"clean": "rm -rf dist/*",
"build": "parcel build src/index.html",
"build:watch": "parcel watch src/index.html",
"build:bundlesize": "parcel build src/index.html --reporter @parcel/reporter-bundle-analyzer"