Skip to content

Commit 7f551f8

Browse files
Actions file names updated to not contain word "action".
1 parent ec20279 commit 7f551f8

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

packages/simplr-forms-core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "simplr-forms-core",
3-
"version": "4.0.0-alpha",
3+
"version": "4.0.0-pre-alpha.4",
44
"description": "Shared simplr-forms logic.",
55
"repository": "https://github.com/SimplrJS/simplr-forms",
66
"main": "dist/simplr-forms-core.js",
77
"types": "@types/index.d.ts",
88
"scripts": {
9-
"build": "webpack && npm run tslint-test",
9+
"build": "webpack && npm run tslint",
1010
"watch": "webpack -w",
11-
"tslint-test": "tslint --config ./tslint.json --project . --exclude __tests__/**/* && echo TsLint test successfully passed.",
11+
"tslint": "tslint --config ./tslint.json --project . --exclude __tests__/**/* && echo TsLint test successfully passed.",
1212
"uglifyjs": "uglifyjs ./dist/simplr-forms-core.js -o ./dist/simplr-forms-core.min.js --compress --mangle",
1313
"release": "npm run build && npm run uglifyjs",
1414
"test": "jest",

packages/simplr-forms-core/src/abstractions/base-field.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import * as ValueHelpers from "../utils/value-helpers";
1414
import { FormContextPropsObject } from "../contracts/form";
1515
import { FormStore } from "../stores/form-store";
1616
import { FormStoreStateRecord } from "../contracts/form-store";
17-
import * as FormStoreActions from "../actions/form-store-actions";
17+
import * as FormStoreActions from "../actions/form-store";
1818
// import { FieldsGroupContextProps } from "../contracts/fields-group";
1919
import { FSHContainer } from "../stores/form-stores-handler";
2020

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export * from "./form-store-actions";
2-
export * from "./form-stores-handler-actions";
1+
export * from "./form-store";
2+
export * from "./form-stores-handler";

packages/simplr-forms-core/src/stores/form-store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as Immutable from "immutable";
22
import { recordify } from "typed-immutable-record";
33
import { ActionEmitter } from "action-emitter";
44

5-
import * as Actions from "../actions/form-store-actions";
5+
import * as Actions from "../actions/form-store";
66
import {
77
FieldState,
88
FieldValue,

packages/simplr-forms-core/src/stores/form-stores-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as Immutable from "immutable";
22
import { ActionEmitter } from "action-emitter";
33

44
import { FormStore } from "./form-store";
5-
import * as Actions from "../actions/form-stores-handler-actions";
5+
import * as Actions from "../actions/form-stores-handler";
66

77
export class FormStoresHandlerClass extends ActionEmitter {
88
private storesCount: number;

0 commit comments

Comments
 (0)