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

feat: API 59.0 update #16

Merged
merged 44 commits into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
64cd1fe
feat: API 59.0 update and refactor
dschach Oct 19, 2023
6eb6e3c
minor updates to punctuation, relevance
dschach Oct 19, 2023
07ac081
style: prettier library
dschach Oct 19, 2023
8d37b76
tidied up
dschach Oct 24, 2023
7c4948e
Merge branch 'main' into feat/api59-1
dschach Oct 24, 2023
ce2f572
progress
dschach Oct 24, 2023
5953d0f
minor fixes
dschach Oct 24, 2023
8dc370e
looks good
dschach Oct 24, 2023
777703e
it works
dschach Oct 24, 2023
dd14224
updates - works
dschach Oct 25, 2023
129c92c
update expected markup
dschach Oct 25, 2023
e691c60
working alpha
dschach Oct 26, 2023
0b9c3f0
latest
dschach Oct 26, 2023
7509d17
beta v59
dschach Oct 26, 2023
42e0404
progress
dschach Oct 28, 2023
24a4140
working copy
dschach Oct 29, 2023
06bcd99
prettier, no punctuation
dschach Oct 29, 2023
6ac6834
and associated minimized libraries
dschach Oct 29, 2023
ae01d4b
pause with lots of comments
dschach Oct 30, 2023
0763b5a
ready to trim
dschach Oct 30, 2023
967a241
update gitignore
dschach Oct 30, 2023
4b1a3b8
Delete demo/scratchpad.html
dschach Oct 30, 2023
cb0de51
Delete demo/scratchpad.css
dschach Oct 30, 2023
4ab03da
remove bad lookahead
dschach Oct 30, 2023
c98b469
ready to work on param parentheses
dschach Oct 31, 2023
3e41598
temp commit apex(original version)
dschach Oct 31, 2023
2cec7af
got the file back!
dschach Oct 31, 2023
3ed9ae0
back to normal
dschach Oct 31, 2023
e76b5f9
update npmignore
dschach Oct 31, 2023
8ab81c3
tweaks
dschach Oct 31, 2023
eb979cc
progress
dschach Oct 31, 2023
9be9c25
good place to pause
dschach Nov 1, 2023
2d49b44
show escaped string delimiters
dschach Nov 1, 2023
a413970
tidy before format
dschach Nov 1, 2023
85585ca
css fixes
dschach Nov 1, 2023
ac7ee44
params variable
dschach Nov 1, 2023
8f63a0b
release candidate
dschach Nov 2, 2023
cf425a2
update expected markup
dschach Nov 2, 2023
1737aca
remove auto-changelog
dschach Nov 2, 2023
ee0ca1e
Merge branch 'main' into feat/api59-1
dschach Nov 2, 2023
0160f8b
docs: move README demo image
dschach Nov 2, 2023
dfe537d
fix: remove constructor scope (unsupported)
dschach Nov 2, 2023
9fc6395
minor style update
dschach Nov 2, 2023
cfaac91
Merge branch 'main' into feat/api59-1
dschach Nov 2, 2023
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
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,14 @@ typings/
.tern-port

# OSX file
.DS_Store
.DS_Store

# SFDX CLI
.sf
.sfdx

#PMD file
.pmdCache

demo/scratchpad.html
demo/scratchpad.css
7 changes: 6 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@

node_modules
.localdevserver
.vscode
.vscode

*.txt

test/index.js
*.png
21 changes: 18 additions & 3 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,15 +1,30 @@
{
"trailingComma": "none",
"useTabs": true,
"printWidth": 120,
"bracketSameLine": true,
"bracketSpacing": true,
"tabWidth": 2,
"singleQuote": true,
"overrides": [
{
"files": ".prettierrc",
"options": { "parser": "json", "printWidth": 80 }
},
{
"files": "**/*.js",
"options": { "useTabs": false, "printWidth": 80 }
"options": { "parser": "babel", "useTabs": false, "printWidth": 80 }
},
{
"files": "doc*/**/*.html",
"options": {
"parser": "html",
"useTabs": true,
"tabWidth": 2,
"printWidth": 150,
"htmlWhitespaceSensitivity": "ignore",
"singleQuote": false
}
}
]
],
"$schema": "https://json.schemastore.org/prettierrc"
}
File renamed without changes.
Loading