Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,6 @@ typings/
dist
es
lib

yarn.lock
package-lock.json
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pnpm 10.28.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ By decoupling the Backbone models from React components, transitioning from Back
React Backbone Connect requires **React 0.14 or later** and **Backbone 1.1.2 or later.**

```
npm install --save @airtasker/react-backbone-connect
pnpm install --save @airtasker/react-backbone-connect
```

This assumes that you’re using [npm](http://npmjs.com/) package manager with a module bundler like [Webpack](https://webpack.js.org/) or [Browserify](http://browserify.org/) to consume [CommonJS modules](http://webpack.github.io/docs/commonjs.html).
Expand Down
9,503 changes: 0 additions & 9,503 deletions package-lock.json

This file was deleted.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airtasker/react-backbone-connect",
"version": "0.0.8",
"version": "0.0.9",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Question: Should this be a major version bump?
https://semver.org/

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't have a minimum node version so I'd say no. Should this have one set? Probably 🤔

"description": "an react redux like lib but for backbone",
"main": "./lib/index.js",
"scripts": {
Expand Down Expand Up @@ -69,5 +69,6 @@
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0",
"backbone": "^1.1.2",
"prop-types": ">=15.5.0"
}
},
"packageManager": "pnpm@10.28.1"
}
5,849 changes: 5,849 additions & 0 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
ignoredBuiltDependencies:
- core-js
- core-js-pure
- fsevents

settings:
autoInstallPeers: true
minimumReleaseAge: 10080
strictPeerDependencies: false
3 changes: 1 addition & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ if (env === "min") {
compress: {
pure_getters: true,
unsafe: true,
unsafe_comps: true,
warnings: false
unsafe_comps: true
}
})
);
Expand Down
Loading