Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Es/feat observation fields #211

Closed
wants to merge 30 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
a9e5ad8
chore:created observationPreset docs
ErikSin Feb 20, 2024
28b1779
chore: name added as a tag property
ErikSin Mar 3, 2024
008abae
chore:create question label
ErikSin Feb 20, 2024
578f6d9
chore:created screen for user to input field values
ErikSin Feb 20, 2024
626049e
chore:translations
ErikSin Feb 20, 2024
619a2bc
feat: created observation fields
ErikSin Feb 20, 2024
136eb6e
chore:added observation fields to navigation
ErikSin Feb 20, 2024
f01fab7
chore: got rid of unused import
ErikSin Feb 20, 2024
c1a46db
chore: change navigation names
ErikSin Apr 1, 2024
7378982
chore:created observationPreset docs
ErikSin Feb 20, 2024
7310ff1
chore: name added as a tag property
ErikSin Mar 3, 2024
8bb4a92
chore:create question label
ErikSin Feb 20, 2024
c4b77f2
chore:created screen for user to input field values
ErikSin Feb 20, 2024
f7192d1
chore:translations
ErikSin Feb 20, 2024
47bcda2
feat: created observation fields
ErikSin Feb 20, 2024
ae20ba3
chore:added observation fields to navigation
ErikSin Feb 20, 2024
4729bfa
chore:added observation fields to navigation
ErikSin Feb 20, 2024
0612e88
chore: got rid of unused import
ErikSin Feb 20, 2024
bc17494
chore: change navigation names
ErikSin Apr 1, 2024
b3faff9
Merge branch 'es/feat-observation-fields' of https://github.com/digid…
ErikSin Apr 1, 2024
42a1f4c
chore: fix linting issues
ErikSin Apr 16, 2024
97bd388
chore: added default config
ErikSin Apr 16, 2024
49ca92b
chore: update from main
ErikSin Apr 16, 2024
9339e1a
chore: added default config for testing
ErikSin Apr 17, 2024
d32b9e3
chore: update from main
ErikSin Apr 22, 2024
09fdc9d
chore: added default config
ErikSin Apr 22, 2024
be0e33c
chore: try different import
ErikSin Apr 24, 2024
3be7e51
chore: update dependecies
ErikSin Apr 30, 2024
f58001d
core: add default config
ErikSin Apr 30, 2024
1758526
chore: update from main
ErikSin Apr 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: added default config
ErikSin committed Apr 22, 2024
commit 09fdc9db283c72bf39b0f0f34d38cc3470c98846
2 changes: 1 addition & 1 deletion scripts/build-backend.mjs
Original file line number Diff line number Diff line change
@@ -74,7 +74,7 @@ const KEEP_THESE = [
'loader.js',
// Static folders referenced by @mapeo/core code
'node_modules/@mapeo/core/drizzle',
'node_modules/@mapeo/default-config/dist/mapeo-default-config-v4.0.0-alpha.0.mapeoconfig'
'node_modules/@mapeo/default-config/dist/mapeo-default-config.mapeoconfig'
];

for (const name of KEEP_THESE) {
2 changes: 1 addition & 1 deletion src/backend/index.js
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ const MIGRATIONS_FOLDER_PATH = new URL(
).pathname

const DEFAULT_CONFIG_PATH = new URL(
'./node_modules/@mapeo/default-config/dist/mapeo-default-config-v4.0.0-alpha.0.mapeoconfig',
'./node_modules/@mapeo/default-config/dist/mapeo-default-config.mapeoconfig',
import.meta.url,
).pathname

11 changes: 11 additions & 0 deletions src/backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/backend/package.json
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@
"license": "MIT",
"dependencies": {
"@mapeo/core": "9.0.0-alpha.7",
"@mapeo/default-config": "^4.0.0-alpha.0",
"@mapeo/default-config": "^4.0.0-alpha.2",
"@mapeo/ipc": "0.3.0",
"debug": "^4.3.4"
},