Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b54f3d3
npm i
NickStull Jul 13, 2022
6037718
changhe package name
NickStull Jul 13, 2022
36bec8d
dot fixes
NickStull Jul 13, 2022
27f2606
version update
NickStull Jul 13, 2022
9252c95
fixes the drawing of rounded and extra rounded dots
NickStull Jul 29, 2022
8017673
updates version
NickStull Jul 29, 2022
bd7c762
edits version and other info
NickStull Jul 29, 2022
189dbe8
Merge pull request #1 from PlasticPrintersMN/bugfix/rounded-and-extra…
PlasticPrintersMN Jul 29, 2022
aa51712
fixed image hide dots orientation
NickStull Aug 3, 2022
621374e
Merge pull request #2 from PlasticPrintersMN/bugfix/image-orientation
PlasticPrintersMN Aug 3, 2022
49197a7
updates version
NickStull Aug 3, 2022
62a7ca8
Merge pull request #3 from PlasticPrintersMN/bugfix/image-orientation
PlasticPrintersMN Aug 3, 2022
a672c27
Update Git repository with code changes
NickStull Nov 10, 2023
29a2ddc
Merge pull request #4 from PlasticPrintersMN/bugfix/streak-fix-and-ne…
PlasticPrintersMN Nov 10, 2023
134c76f
updates files to 1.6 pluse circle
NickStull Nov 16, 2023
aeb78f3
global object
NickStull Nov 16, 2023
2211fa8
Merge pull request #5 from PlasticPrintersMN/upgrade-to-new-release
PlasticPrintersMN Feb 2, 2024
6842ef4
bumps version for release
NickStull Feb 2, 2024
9ffa57e
Merge pull request #6 from PlasticPrintersMN/bump-to-version-0.6.0
PlasticPrintersMN Feb 2, 2024
f339b96
fixes orientation
NickStull Feb 2, 2024
c0f7bda
Merge pull request #7 from PlasticPrintersMN/bugfix/vertical-and-hori…
PlasticPrintersMN Feb 2, 2024
0ed2312
added qr data as a seed to random dots type to keep the randomization…
NickStull Feb 2, 2024
4817e5e
Merge pull request #8 from PlasticPrintersMN/seeding-random-dots-type
PlasticPrintersMN Feb 6, 2024
d13a6a9
updates version for npm
NickStull Feb 6, 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
3 changes: 2 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[*.{js, ts}]
indent_style = space
indent_size = 2
indent_size = 2
end_of_line = lf
9 changes: 8 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,18 @@ module.exports = {
extends: [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:jest/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/eslint-recommended"
],
parserOptions: {
sourceType: "module"
},
rules: {
"prettier/prettier": [
"error",
{
endOfLine: "auto"
}
]
}
};
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@
/node_modules

# Tests coverage results
/coverage
/coverage

.DS_Store
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ module.exports = {
// snapshotSerializers: [],

// The test environment that will be used for testing
testEnvironment: "jest-environment-jsdom-fifteen",
// testEnvironment: "jest-environment-jsdom-fifteen",

// Options that will be passed to the testEnvironment
testEnvironmentOptions: {
Expand Down
Loading