@plusscommunities/pluss-feeds-web 1.0.7 → 1.0.8-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,15 +1,21 @@
1
1
  {
2
2
  "name": "@plusscommunities/pluss-feeds-web",
3
- "version": "1.0.7",
3
+ "version": "1.0.8-beta.0",
4
4
  "description": "Extension package to enable feeds on Pluss Communities Platform",
5
- "main": "dist/index.cjs.js",
5
+ "exports": {
6
+ ".": "./dist/index.js"
7
+ },
8
+ "files": [
9
+ "dist/"
10
+ ],
6
11
  "scripts": {
7
- "build": "npm i && rollup -c",
12
+ "build": "rollup -c",
13
+ "prepublishOnly": "(cd .. && npm install) && npm run build",
8
14
  "betapatch": "npm version prepatch --preid=beta",
9
15
  "patch": "npm version patch",
10
- "betaupload": "npm run build && npm publish --access public --tag beta && rm -rf node_modules",
16
+ "betaupload": "npm publish --access public --tag beta",
11
17
  "betaupload:p": "npm run betapatch && npm run betaupload",
12
- "upload": "npm run build && npm publish --access public && rm -rf node_modules",
18
+ "upload": "npm publish --access public",
13
19
  "upload:p": "npm run patch && npm run upload",
14
20
  "copy:add": "run(){ ext=${1:-default}; test -f src/values.config.$ext.js || cp src/values.config.default.js src/values.config.$ext.js; }; run",
15
21
  "copy:get": "echo $npm_package_name",
@@ -18,37 +24,20 @@
18
24
  "copy:upload": "npm run patch; for file in `ls ./src/values.config.*.js`; do dup=`echo $file | sed 's/.*values\\.config\\.\\(.*\\)\\.js/\\1/'`; npm run copy:set $dup; npm run upload; done; npm run copy:set;"
19
25
  },
20
26
  "author": "Phillip Suh",
21
- "license": "ISC",
22
- "devDependencies": {
23
- "@babel/cli": "^7.14.3",
24
- "@babel/core": "^7.14.3",
25
- "@babel/plugin-transform-runtime": "^7.14.3",
26
- "@babel/preset-env": "^7.14.2",
27
- "@babel/preset-react": "^7.13.13",
28
- "@rollup/plugin-babel": "^5.3.0",
29
- "@rollup/plugin-image": "^2.0.6",
30
- "@rollup/plugin-json": "^4.1.0",
31
- "autoprefixer": "^10.2.6",
32
- "rollup": "^2.50.1",
33
- "rollup-plugin-local-resolve": "^1.0.7",
34
- "rollup-plugin-styles": "^3.14.1"
35
- },
36
27
  "dependencies": {
37
- "@babel/runtime": "^7.14.0"
28
+ "@babel/runtime": "^7.14.0",
29
+ "@plusscommunities/pluss-icons": "^1.0.0"
38
30
  },
39
31
  "peerDependencies": {
40
32
  "@plusscommunities/pluss-core-web": "*",
41
- "@fortawesome/fontawesome-svg-core": "*",
42
- "@fortawesome/free-solid-svg-icons": "*",
43
- "@fortawesome/react-fontawesome": "*",
44
33
  "js-cookie": "*",
45
34
  "lodash": "*",
46
35
  "moment": "*",
47
36
  "react": "*",
48
37
  "react-bootstrap": "*",
49
38
  "react-dom": "*",
50
- "react-fontawesome": "*",
51
39
  "react-redux": "*",
40
+ "react-router": "*",
52
41
  "react-router-dom": "*",
53
42
  "react-textarea-autosize": "*"
54
43
  },
package/.babelrc DELETED
@@ -1,3 +0,0 @@
1
- {
2
- "presets": ["@babel/preset-react", "@babel/preset-env"]
3
- }