File tree Expand file tree Collapse file tree 7 files changed +8
-8
lines changed
packages/simplr-forms-core Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " simplr-forms-core" ,
3
- "version" : " 4.0.0-alpha" ,
3
+ "version" : " 4.0.0-pre- alpha.4 " ,
4
4
"description" : " Shared simplr-forms logic." ,
5
5
"repository" : " https://github.com/SimplrJS/simplr-forms" ,
6
6
"main" : " dist/simplr-forms-core.js" ,
7
7
"types" : " @types/index.d.ts" ,
8
8
"scripts" : {
9
- "build" : " webpack && npm run tslint-test " ,
9
+ "build" : " webpack && npm run tslint" ,
10
10
"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." ,
12
12
"uglifyjs" : " uglifyjs ./dist/simplr-forms-core.js -o ./dist/simplr-forms-core.min.js --compress --mangle" ,
13
13
"release" : " npm run build && npm run uglifyjs" ,
14
14
"test" : " jest" ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import * as ValueHelpers from "../utils/value-helpers";
14
14
import { FormContextPropsObject } from "../contracts/form" ;
15
15
import { FormStore } from "../stores/form-store" ;
16
16
import { FormStoreStateRecord } from "../contracts/form-store" ;
17
- import * as FormStoreActions from "../actions/form-store-actions " ;
17
+ import * as FormStoreActions from "../actions/form-store" ;
18
18
// import { FieldsGroupContextProps } from "../contracts/fields-group";
19
19
import { FSHContainer } from "../stores/form-stores-handler" ;
20
20
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
- export * from "./form-store-actions " ;
2
- export * from "./form-stores-handler-actions " ;
1
+ export * from "./form-store" ;
2
+ export * from "./form-stores-handler" ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import * as Immutable from "immutable";
2
2
import { recordify } from "typed-immutable-record" ;
3
3
import { ActionEmitter } from "action-emitter" ;
4
4
5
- import * as Actions from "../actions/form-store-actions " ;
5
+ import * as Actions from "../actions/form-store" ;
6
6
import {
7
7
FieldState ,
8
8
FieldValue ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import * as Immutable from "immutable";
2
2
import { ActionEmitter } from "action-emitter" ;
3
3
4
4
import { FormStore } from "./form-store" ;
5
- import * as Actions from "../actions/form-stores-handler-actions " ;
5
+ import * as Actions from "../actions/form-stores-handler" ;
6
6
7
7
export class FormStoresHandlerClass extends ActionEmitter {
8
8
private storesCount : number ;
You can’t perform that action at this time.
0 commit comments