Skip to content
This repository was archived by the owner on May 31, 2020. It is now read-only.

Commit e36931a

Browse files
committed
update package json to use relative links
1 parent 2b1d11e commit e36931a

File tree

9 files changed

+289
-304
lines changed

9 files changed

+289
-304
lines changed

packages/atomic-block/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"scripts": {
1212
"test": "cross-env CI=1 react-scripts test --env=jsdom",
1313
"test:watch": "react-scripts test --env=jsdom",
14-
"build": "rollup -c",
15-
"start": "rollup -c -w",
14+
"build": "./node_modules/.bin/rollup -c",
15+
"start": "./node_modules/.bin/rollup -c -w",
1616
"prepare": "yarn run build",
1717
"predeploy": "cd example && yarn install && yarn run build",
1818
"deploy": "gh-pages -d example/build"

packages/autocomplete/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"scripts": {
1212
"test": "cross-env CI=1 react-scripts test --env=jsdom",
1313
"test:watch": "react-scripts test --env=jsdom",
14-
"build": "rollup -c",
15-
"start": "rollup -c -w",
14+
"build": "./node_modules/.bin/rollup -c",
15+
"start": "./node_modules/.bin/rollup -c -w",
1616
"prepare": "yarn run build",
1717
"predeploy": "cd example && yarn install && yarn run build",
1818
"deploy": "gh-pages -d example/build"

packages/block-type-toggle/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"scripts": {
1212
"test": "cross-env CI=1 react-scripts test --env=jsdom",
1313
"test:watch": "react-scripts test --env=jsdom",
14-
"build": "rollup -c",
15-
"start": "rollup -c -w",
14+
"build": "./node_modules/.bin/rollup -c",
15+
"start": "./node_modules/.bin/rollup -c -w",
1616
"flow": "./node_modules/.bin/flow",
1717
"prepare": "yarn run build",
1818
"predeploy": "cd example && yarn install && yarn run build",

packages/core/.babelrc

Lines changed: 0 additions & 12 deletions
This file was deleted.

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"scripts": {
1212
"test": "cross-env CI=1 react-scripts test --env=jsdom",
1313
"test:watch": "react-scripts test --env=jsdom",
14-
"build": "rimraf dist && rollup -c && yarn build:flow",
14+
"build": "rimraf dist && ./node_modules/.bin/rollup -c && yarn build:flow",
1515
"build:flow": "./node_modules/.bin/flow-copy-source -v -i '**/__tests__/**' src dist",
16-
"start": "rollup -c -w",
16+
"start": "./node_modules/.bin/rollup -c -w",
1717
"flow": "./node_modules/.bin/flow",
1818
"prepare": "yarn run build && yarn build:flow",
1919
"predeploy": "cd example && yarn install && yarn run build",

packages/inline-style-toggle/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"test": "cross-env CI=1 react-scripts test --env=jsdom",
1313
"flow": "./node_modules/.bin/flow",
1414
"test:watch": "react-scripts test --env=jsdom",
15-
"build": "rollup -c",
16-
"start": "rollup -c -w",
15+
"build": "./node_modules/.bin/rollup -c",
16+
"start": "./node_modules/.bin/rollup -c -w",
1717
"prepare": "yarn run build",
1818
"predeploy": "cd example && yarn install && yarn run build",
1919
"deploy": "gh-pages -d example/build"

packages/utils/.babelrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)