Skip to content
This repository was archived by the owner on Nov 11, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,4 @@ node_modules/

# Brunch output folder.
public/

_legacy
3 changes: 1 addition & 2 deletions brunch-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ exports.files = {
javascripts: {
joinTo: {
'vendor.js': /^(?!src)/,
'app.js': /^src/,
'index.js': /^src\/components/
'index.js': /^src/
}
},
stylesheets: { joinTo: 'app.css' }
Expand Down
1 change: 0 additions & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<title>Brunch</title>
<link rel="stylesheet" href="/app.css">
<script src="/vendor.js"></script>
<script src="/app.js"></script>
<script src="/index.js"></script>
<script>require('example/initialize');</script>
</head>
Expand Down
96 changes: 96 additions & 0 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@shipyardsuite/base-layout",
"version": "0.2.3",
"version": "0.3.0",
"description": "Shared components for Shipyard GCDN Microservices",
"author": "ShipyardSuite",
"license": "Apache-2.0",
"main": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"scripts": {
"start": "brunch watch --server",
"build": "brunch build --production",
"build:publish": "npm build && npm publish --access public"
"build:publish": "npm run build && npm publish --access public"
},
"dependencies": {
"react": "^15.4",
Expand Down
1 change: 0 additions & 1 deletion src/example/assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<title>Brunch</title>
<link rel="stylesheet" href="/app.css">
<script src="/vendor.js"></script>
<script src="/app.js"></script>
<script src="/index.js"></script>
<script>require('example/initialize');</script>
</head>
Expand Down