Unhandled exception, keyword "id" not supported. use "$id" for schema ID
See original GitHub issueI’m submitting a…
[ ] Regression (a behavior that used to work and stopped working in a new release)
[X] Bug report
[ ] Performance issue
[ ] Feature request
[ ] Documentation issue or request
[ ] Support request
[ ] Other... Please describe:
Current behavior
Running ng add @ngneat/tailwind
throws the following
An unhandled exception occurred: NOT SUPPORTED: keyword “id”, use “$id” for schema ID
See “path/to/log” for further details.
Expected behavior
Running ng add @ngneat/tailwind
proceeds normally.
Minimal reproduction of the problem with instructions
Create a new angular app with angular 13.
ng new test ng add @ngneat/tailwind
What is the motivation / use case for changing the behavior?
My supposition is due to angular advancing to version 13 and deprecating old stuff
Environment
Angular version: 13.0.1
For Tooling issues:
- Node version: v14.17.6
- Platform: Win10
Issue Analytics
- State:
- Created 2 years ago
- Reactions:21
- Comments:16
Top Results From Across the Web
keyword "id", use "$id" for schema ID : TSLint (ng add ...
The project is compiling and working fine. Now the time for TSLint I tried to update the lint with the below command. ng...
Read more >An unhandled exception occurred: NOT SUPPORTED ...
The error: An unhandled exception occurred: NOT SUPPORTED: keyword "id", use "$id" for schema ID See "/private/var ...
Read more >NOT SUPPORTED: keyword "id", use "$id" for schema ID
I have an Ionic 5 app. I Updated Angular to v13, and now when I try to create a page using ionic g...
Read more >DevExtreme Angular Template - The 'An unhandled exception ...
The 'An unhandled exception occurred: NOT SUPPORTED: keyword "id", use "$id" for schema ID' error occurs.
Read more >NOT SUPPORTED: keyword "id", use "$id" for schema ID
an unhandled exception occurred: not supported: keyword "id", use "$id" for schema id · Oops, You will need to install Grepper and log-in...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Any updates on it?
Well, since I had the same issue on a brand new project, I looked into the code.
The issue is about the published
schema.json
files for builders. They are using a property"id"
instead of"$id"
as it should be.This commit should correct this issue: https://github.com/ngneat/tailwind/commit/2fb33aae35ac188b1840665bdca980d02c1cc43d which has been merged into
main
Unfortunately, the last version has been made 6 months ago …