Skip to content

Commit

Permalink
chore(*): rename package name
Browse files Browse the repository at this point in the history
  • Loading branch information
akameco committed Mar 20, 2018
1 parent ede08b2 commit 3f27ec2
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .flowconfig
@@ -1,7 +1,7 @@
[ignore]
.*/examples/.*
.*/s2s-templates-redux/templates/.*
.*/packages/babel-plugin-s2s-d-action-test/src/__fixtures__/.*
.*/packages/babel-plugin-s2s-d-action-tests/src/__fixtures__/.*

[include]
packages/*/src
Expand Down
2 changes: 1 addition & 1 deletion examples/react-redux-type-d/package.json
Expand Up @@ -19,7 +19,7 @@
"devDependencies": {
"babel-plugin-s2s-d-action-constants": "^0.1.0",
"babel-plugin-s2s-d-action-creater": "^0.1.0",
"babel-plugin-s2s-d-action-test": "^0.1.0",
"babel-plugin-s2s-d-action-tests": "^0.1.0",
"babel-plugin-s2s-d-action-types": "^0.1.0",
"s2s": "^0.18.2"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/react-redux-type-d/s2s.config.js
Expand Up @@ -2,7 +2,7 @@ const path = require('path')
const actionConstants = require('babel-plugin-s2s-d-action-constants').default
const actionTypes = require('babel-plugin-s2s-d-action-types').default
const actionCreater = require('babel-plugin-s2s-d-action-creater').default
const actionTest = require('babel-plugin-s2s-d-action-test').default
const actionTest = require('babel-plugin-s2s-d-action-tests').default

const actionTypesMatch = /actions\/.*\/types.js/

Expand Down
@@ -1,5 +1,5 @@
{
"name": "babel-plugin-s2s-d-action-test",
"name": "babel-plugin-s2s-d-action-tests",
"version": "0.1.0",
"description": "generate action test",
"license": "MIT",
Expand Down
@@ -1,6 +1,6 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`default 1. s2s-d-action-types: 1. s2s-d-action-types 1`] = `
exports[`default 1. s2s-d-action-tests: 1. s2s-d-action-tests 1`] = `
"
// @flow
Expand All @@ -18,7 +18,7 @@ test(\\"FETCH_USER\\", () => {
"
`;

exports[`default 2. s2s-d-action-types: 2. s2s-d-action-types 1`] = `
exports[`default 2. s2s-d-action-tests: 2. s2s-d-action-tests 1`] = `
"
// @flow
test('a', () => {});
Expand Down
Expand Up @@ -25,7 +25,7 @@ const createTest = name =>

export default () => ({
inherits: flowSyntax,
name: 's2s-d-action-types',
name: 's2s-d-action-tests',
visitor: {
Program(rootPath: BabelPath, { opts: { from } }: State) {
if (!from) {
Expand Down

0 comments on commit 3f27ec2

Please sign in to comment.