File tree Expand file tree Collapse file tree 5 files changed +30
-215
lines changed Expand file tree Collapse file tree 5 files changed +30
-215
lines changed Original file line number Diff line number Diff line change 1
- build
2
- node_modules
1
+ /build
2
+ /dist
3
+ /node_modules
3
4
* .log
5
+ package-lock.json
Original file line number Diff line number Diff line change 1
- Copyright (c) 2022 37signals, LLC
1
+ Copyright (c) 2023 37signals LLC
2
2
3
3
Permission is hereby granted, free of charge, to any person obtaining
4
4
a copy of this software and associated documentation files (the
Original file line number Diff line number Diff line change 3
3
const esbuild = require ( "esbuild" )
4
4
const package = require ( "../package.json" )
5
5
const year = new Date ( ) . getFullYear ( )
6
- const banner = `/*\nStrada ${ package . version } \nCopyright © ${ year } 37signals, LLC\n*/`
6
+ const banner = `/*\nStrada ${ package . version } \nCopyright © ${ year } 37signals LLC\n*/`
7
7
8
8
const options = {
9
9
entryPoints : [ "src/index.js" ] ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @hotwired/strada" ,
3
- "version" : " 0.9.3" ,
3
+ "version" : " 1.0.0-beta1" ,
4
+ "description" : " Create fully native controls, driven by your web app." ,
4
5
"main" : " dist/strada.js" ,
5
6
"files" : [
6
- " dist"
7
+ " dist/*.js"
8
+ ],
9
+ "repository" : {
10
+ "type" : " git" ,
11
+ "url" : " git+https://github.com/hotwired/strada-web.git"
12
+ },
13
+ "keywords" : [
14
+ " hotwire" ,
15
+ " strada"
16
+ ],
17
+ "author" : " 37signals LLC" ,
18
+ "contributors" : [
19
+ " Jay Ohms <jay@37signals.com>"
7
20
],
8
- "repository" : " git://github.com/hotwired/strada-web.git" ,
9
- "author" : " 37signals, LLC" ,
10
21
"license" : " MIT" ,
22
+ "bugs" : {
23
+ "url" : " https://github.com/hotwired/strada-web/issues"
24
+ },
25
+ "homepage" : " https://strada.hotwired.dev" ,
26
+ "publishConfig" : {
27
+ "access" : " public"
28
+ },
11
29
"scripts" : {
12
30
"clean" : " rm -rf build/* dist/*" ,
13
- "prebuild " : " npm run clean " ,
14
- "build " : " bin/ build.js "
31
+ "build " : " bin/build.js " ,
32
+ "release " : " yarn build && npm publish "
15
33
},
16
34
"devDependencies" : {
17
35
"esbuild" : " ^0.17.16"
You can’t perform that action at this time.
0 commit comments