Skip to content

Commit b2fb0ff

Browse files
author
Joe Gilreath
committed
fix: add semicolon
1 parent cc5fb9a commit b2fb0ff

File tree

4 files changed

+23
-9
lines changed

4 files changed

+23
-9
lines changed

libs/reactive-forms/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "@ngneat/reactive-forms",
2+
"name": "@lothern/reactive-forms",
33
"description": "(Angular Reactive) Forms with Benefits",
4-
"version": "5.0.2",
4+
"version": "5.0.4",
55
"keywords": [
66
"angular",
77
"angular 2",
@@ -22,14 +22,14 @@
2222
"access": "public"
2323
},
2424
"bugs": {
25-
"url": "https://github.com/ngneat/reactive-forms/issues"
25+
"url": "https://github.com/lothern/reactive-forms/issues"
2626
},
27-
"homepage": "https://github.com/ngneat/reactive-forms#readme",
27+
"homepage": "https://github.com/lothern/reactive-forms#readme",
2828
"peerDependencies": {
2929
"@angular/forms": ">= 14.0.0"
3030
},
3131
"repository": {
3232
"type": "git",
33-
"url": "https://github.com/ngneat/reactive-forms"
33+
"url": "https://github.com/lothern/reactive-forms"
3434
}
3535
}

libs/reactive-forms/src/lib/persist/persist.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function handleFormArrays<T>(
6969
throw new Error(`Please provide arrControlFactory for ${controlName}`);
7070
}
7171
const current = control.get(controlName) as UntypedFormArray;
72-
const fc = (arrControlFactory as any)[controlName]
72+
const fc = (arrControlFactory as any)[controlName];
7373
clearFormArray(current);
7474
value.forEach((v, i) => current.insert(i, fc(v)));
7575
}
@@ -128,4 +128,4 @@ export class SessionStorageManager<T> implements PersistManager<T> {
128128
getValue(key: string): T {
129129
return JSON.parse(sessionStorage.getItem(key) || '{}');
130130
}
131-
}
131+
}

package-lock.json

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"format": "nx format:write",
1515
"test": "nx test",
1616
"c": "git-cz",
17-
"prepare": "husky install"
17+
"prepare": "husky install",
18+
"publish": "cd dist/libs/reactive-forms && npm publish"
1819
},
1920
"private": true,
2021
"dependencies": {
@@ -49,6 +50,7 @@
4950
"@nrwl/tao": "13.2.1",
5051
"@nrwl/workspace": "13.2.1",
5152
"@types/jest": "27.0.2",
53+
"@types/luxon": "^3.3.2",
5254
"@types/node": "14.14.33",
5355
"@typescript-eslint/eslint-plugin": "4.33.0",
5456
"@typescript-eslint/parser": "4.33.0",
@@ -84,4 +86,3 @@
8486
]
8587
}
8688
}
87-

0 commit comments

Comments
 (0)