Skip to content

Commit

Permalink
update aragon-apps build settings
Browse files Browse the repository at this point in the history
  • Loading branch information
novaknole committed Sep 1, 2021
1 parent f692a02 commit a9db67e
Show file tree
Hide file tree
Showing 12 changed files with 3,508 additions and 24,581 deletions.
16 changes: 8 additions & 8 deletions apps/agent/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"private": true,
"license": "AGPL-3.0-or-later",
"dependencies": {
"@aragon/api": "^2.1.4",
"@aragon/api-react": "^2.2.0",
"@aragon/api": "^2.2.3",
"@aragon/api-react": "^2.2.4",
"@aragon/templates-tokens": "^1.2.0",
"@aragon/ui": "^1.8.0",
"@aragon/ui": "^1.9.0",
"@babel/polyfill": "^7.8.3",
"date-fns": "2.0.0-alpha.22",
"file-saver": "^2.0.2",
Expand Down Expand Up @@ -41,11 +41,11 @@
},
"scripts": {
"lint": "eslint ./src",
"sync-assets": "copy-aragon-ui-assets -n aragon-ui ./build && rsync -rtu ./public/ ./build",
"start": "npm run sync-assets && npm run watch:script & parcel serve index.html -p 3005 --out-dir build/",
"build": "npm run sync-assets && npm run build:script && parcel build index.html --out-dir build/ --public-url \".\"",
"watch:script": "parcel watch src/script.js --out-dir build/ --no-hmr",
"build:script": "parcel build src/script.js --out-dir build/"
"start": "npm run sync-assets && npm run watch:script & parcel serve index.html -p 3005 --out-dir ../dist/",
"build": "rm -rf ../dist/ && npm run sync-assets && npm run build:script && parcel build index.html --no-cache --out-dir ../dist/ --public-url \".\"",
"build:script": "parcel build src/script.js --out-dir ../dist/",
"watch:script": "parcel watch src/script.js --out-dir ../dist/ --no-hmr",
"sync-assets": "copy-aragon-ui-assets -n aragon-ui ../dist && rsync -rtu ./public/ ../dist/"
},
"browserslist": [
">2%",
Expand Down
8,376 changes: 1,336 additions & 7,040 deletions apps/agent/app/yarn.lock

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions apps/finance/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"private": true,
"license": "AGPL-3.0-or-later",
"dependencies": {
"@aragon/api": "2.1.4",
"@aragon/api-react": "2.2.0",
"@aragon/api": "^2.2.3",
"@aragon/api-react": "^2.2.4",
"@aragon/templates-tokens": "^1.3.0",
"@aragon/ui": "^1.8.0",
"@aragon/ui": "^1.9.0",
"@babel/polyfill": "^7.8.3",
"bn.js": "^4.11.8",
"core-js": "^2.6.5",
Expand Down Expand Up @@ -48,11 +48,11 @@
"scripts": {
"test": "jest",
"lint": "eslint ./src",
"start": "npm run sync-assets && npm run watch:script & parcel serve index.html -p 3002 --out-dir build/",
"build": "npm run sync-assets && npm run build:script && parcel build index.html --no-cache --out-dir build/ --public-url \".\"",
"build:script": "parcel build src/script.js --out-dir build/",
"watch:script": "parcel watch src/script.js --out-dir build/ --no-hmr",
"sync-assets": "copy-aragon-ui-assets -n aragon-ui ./build && rsync -rtu ./public/ ./build",
"start": "npm run sync-assets && npm run watch:script & parcel serve index.html -p 3002 --out-dir ../dist/",
"build": "rm -rf ../dist/ && npm run sync-assets && npm run build:script && parcel build index.html --no-cache --out-dir ../dist/ --public-url \".\"",
"build:script": "parcel build src/script.js --out-dir ../dist/",
"watch:script": "parcel watch src/script.js --out-dir ../dist/ --no-hmr",
"sync-assets": "copy-aragon-ui-assets -n aragon-ui ../dist && rsync -rtu ./public/ ../dist/",
"now-build": "npm run build"
},
"browserslist": [
Expand Down
1 change: 1 addition & 0 deletions apps/finance/app/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import Balances from './components/Balances'
import NewTransferPanelContent from './components/NewTransfer/PanelContent'
import Transfers from './components/Transfers'

console.log("gio")
class App extends React.Component {
static propTypes = {
api: PropTypes.object,
Expand Down
Loading

0 comments on commit a9db67e

Please sign in to comment.