Skip to content

Commit

Permalink
Rename examples/flow/esm.js.flow to destructuring.js.flow
Browse files Browse the repository at this point in the history
  • Loading branch information
leshakoss committed Sep 14, 2017
1 parent fa2664e commit cabf435
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions examples/flow/package.json
Expand Up @@ -14,15 +14,15 @@
"build": "yarn run build-date-fns && yarn run flow-check && yarn run build-babel",
"flow-check": "flow check",
"build-date-fns": "env PACKAGE_OUTPUT_PATH=\"$(pwd)/node_modules/date-fns\" ../../scripts/build/package.sh",
"build-babel": "yarn run build-babel-example && yarn run build-babel-fp && yarn run build-babel-misc && yarn build-babel-esm",
"build-babel": "yarn run build-babel-example && yarn run build-babel-fp && yarn run build-babel-misc && yarn build-babel-destructuring",
"build-babel-example": "mkdir -p dist && babel example.js.flow --out-file dist/example.js",
"build-babel-fp": "mkdir -p dist && babel fp.js.flow --out-file dist/fp.js",
"build-babel-misc": "mkdir -p dist && babel misc.js.flow --out-file dist/misc.js",
"build-babel-esm": "mkdir -p dist && babel esm.js.flow --out-file dist/esm.js",
"test": "yarn run test-example && yarn run test-fp && yarn run test-misc && yarn run test-esm",
"build-babel-destructuring": "mkdir -p dist && babel destructuring.js.flow --out-file dist/destructuring.js",
"test": "yarn run test-example && yarn run test-fp && yarn run test-misc && yarn run test-destructuring",
"test-example": "test $(env TZ=UTC node ./dist/example.js) = true",
"test-fp": "test $(env TZ=UTC node ./dist/fp.js) = true",
"test-misc": "test $(env TZ=UTC node ./dist/misc.js) = true",
"test-esm": "test $(env TZ=UTC node ./dist/esm.js) = true"
"test-destructuring": "test $(env TZ=UTC node ./dist/destructuring.js) = true"
}
}

0 comments on commit cabf435

Please sign in to comment.