Skip to content

Commit

Permalink
abjad-web versoin 0.1.0 (#11)
Browse files Browse the repository at this point in the history
* use abjad-convert 0.2.1
  • Loading branch information
amerharb authored Jan 15, 2024
1 parent 1c2870a commit 771b1da
Show file tree
Hide file tree
Showing 12 changed files with 7,358 additions and 4,142 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ module.exports = {
rules: {
'indent': ['error', 'tab'],
},
excludedFiles: ['**/coverage/*', '**/dist/*', '**/node_modules/*'],
},
],
}
4 changes: 2 additions & 2 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: true
matrix:
node-version: [ 20.x, 18.x, 16.x]
node-version: [ 20.x, 18.x ]

steps:
- uses: actions/checkout@v4
Expand All @@ -21,7 +21,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn
- run: yarn workspaces foreach --all install --immutable
- run: yarn lint
- run: yarn build
- run: yarn test
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
dist/
node_modules/

# Yarn 4
**/.yarn/*
!**/.yarn/patches
!**/.yarn/plugins
!**/.yarn/releases
!**/.yarn/versions

### macOS template
# General
.DS_Store
Expand Down
893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.0.2.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.0.2.cjs
28 changes: 17 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,26 @@
"author": "Amer Harb",
"license": "ISC",
"scripts": {
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"build": "yarn workspaces run build",
"test": "yarn workspaces run test",
"start": "yarn workspaces run start"
"lint": "yarn workspaces foreach --all -p run lint",
"lint:fix": "yarn workspaces foreach --all -p run lint:fix",
"build": "yarn workspaces foreach --all run build",
"test": "yarn workspaces foreach --all -p run test",
"start": "yarn workspaces foreach --all -p run start"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"@types/node": "^20.11.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"make-coverage-badge": "^1.2.0",
"ts-jest": "^29.1.1",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0"
}
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"yarn": ">=4.0.0"
},
"packageManager": "yarn@4.0.2"
}
2 changes: 1 addition & 1 deletion packages/abjad-convert/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "abjad-convert",
"version": "0.2.1",
"version": "0.2.1-disable.local",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
Expand Down
4 changes: 4 additions & 0 deletions packages/abjad-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

<!-- https://keepachangelog.com/en/1.0.0/ -->

## [0.1.0] 2024-01-14
### Changed
- use abjad-convert 0.2.1

## [0.0.3] 2024-01-14
### Added
- Tifinagh to the List
Expand Down
2 changes: 2 additions & 0 deletions packages/abjad-web/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Abjad web page

A simple web page for Abjad using Next.js.

web: [abjad.amerharb.com]()
4 changes: 2 additions & 2 deletions packages/abjad-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "abjad-web",
"version": "0.0.3",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -14,7 +14,7 @@
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/joy": "^5.0.0-beta.11",
"abjad-convert": "0.2.0",
"abjad-convert": "0.2.1",
"next": "13.5.6",
"react": "^18",
"react-dom": "^18"
Expand Down
Loading

0 comments on commit 771b1da

Please sign in to comment.