mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 02:15:01 +00:00
* yarn extract-object-types (run again) * preparing to load Application.mi * avoid error about using function ins strict mode. turn this to "function" syntax to see the error/warn * embed TrueTypeFont in one CSS * add api: getAttribute * reaching zero erro at devtool Console * set color correctly. * move compiler to new project * take some yarn-scripts from sibling (modern-1) * reconfigure objectData target path * remove duplicated folder * discontinuing the 1st iteration captbaritone: it's probably time to del modern & ren modern-2: modern * set the 2nd iteration as only one on track. captbaritone: it's probably time to del modern & ren modern-2: modern * bugfix test not working: path unavailable * implement TODO * reduce warning at import jzip * solving Deploy: failed * solving deploy failed error: Unknown workspace "webamp-modern * bugfix premateur call of this._font_id * bugfix font-family : ''; prettier. Co-authored-by: Fathony <fathony@smart-leaders.net>
30 lines
670 B
JSON
30 lines
670 B
JSON
{
|
|
"name": "webamp-monorepo",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*",
|
|
"examples/*"
|
|
],
|
|
"scripts": {
|
|
"test": "jest",
|
|
"lint": "eslint . --ext ts,tsx,js,jsx --rulesdir=packages/webamp-modern/tools/eslint-rules",
|
|
"deploy": "sh deploy.sh",
|
|
"format": "prettier --write '**/*.{js,ts,tsx}'"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
"@typescript-eslint/parser": "^5.13.0",
|
|
"eslint": "^8.10.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "^27.5.1",
|
|
"prettier": "^2.3.2"
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "es5"
|
|
},
|
|
"jest": {
|
|
"projects": [
|
|
"config/jest.*.js"
|
|
]
|
|
}
|
|
}
|