chore: workflow

This commit is contained in:
Mo
2022-06-14 11:20:17 -05:00
parent 4bd61adc5b
commit d9ad998e42
8 changed files with 34 additions and 14 deletions

View File

@@ -8,8 +8,8 @@
]
},
"scripts": {
"build": "echo BUILDING COMPONENTS && yarn workspaces foreach --parallel run build",
"lint": "yarn workspaces foreach --parallel run lint"
"build": "yarn workspaces foreach --parallel --verbose run build",
"lint": "yarn workspaces foreach --parallel --verbose run lint"
},
"devDependencies": {
"@standardnotes/deterministic-zip": "^1.2.0",

View File

@@ -15,7 +15,7 @@
},
"scripts": {
"build:remove-unpacked": "rimraf dist/{linux-*,mac,win-*}",
"build": "echo BUILDING DESKTOP && yarn run webpack --config desktop.webpack.prod.js",
"build": "yarn run webpack --config desktop.webpack.prod.js",
"build:desktop:all": "yarn workspaces foreach -ptR run build",
"clean:build": "rimraf app/dist/",
"clean:tests": "rimraf test/data/tmp/",

View File

@@ -7,7 +7,7 @@
"scripts": {
"start": "webpack-dev-server --config webpack.config.js",
"watch": "webpack -w --config webpack.config.js",
"build": "echo BUILDING ICONS && webpack --config webpack.config.js && yarn run tsc",
"build": "webpack --config webpack.config.js && yarn run tsc",
"tsc": "tsc --project ./tsconfig.json"
},
"devDependencies": {

View File

@@ -1,7 +1,7 @@
{
"name": "@standardnotes/mobile",
"version": "3.23.0",
"user-version": "3.22.0",
"user-version": "3.23.0",
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {

View File

@@ -8,7 +8,7 @@
"access": "public"
},
"scripts": {
"build": "echo BUILDING STYLES && webpack --mode='production' && yarn run tsc",
"build": "webpack --mode='production' && yarn run tsc",
"start": "webpack --watch --mode='development'",
"lint": "prettier --check *.js"
},

View File

@@ -13,7 +13,7 @@
"watch": "webpack -w --config web.webpack.dev.js",
"clean": "rm -fr dist",
"prebuild": "yarn clean",
"build": "echo BUILDING WEB && webpack --config web.webpack.prod.js && yarn tsc",
"build": "webpack --config web.webpack.prod.js && yarn tsc",
"build:web:all": "yarn workspaces foreach -ptR run build",
"lint": "eslint src/javascripts",
"tsc": "tsc --project tsconfig.json",