codesandboxer
Advanced tools
Comparing version 1.0.1 to 1.0.2
# Changelog | ||
## 1.0.2 | ||
### Patch Changes | ||
- [patch][a4400e5](https://github.com/codesandbox/codesandboxer/commit/a4400e5): | ||
Fix bitbucket API to use the 2.0 bitbucket API | ||
## 1.0.1 | ||
- [patch] [cedfb74](https://github.com/codesandbox/codesandboxer/commit/cedfb74): | ||
- [patch][cedfb74](https://github.com/codesandbox/codesandboxer/commit/cedfb74): | ||
- Update repository references to point to new home. | ||
## 1.0.0 | ||
- [minor] [0b60604](https://github.com/codesandbox/codesandboxer/commit/0b60604): | ||
- [minor][0b60604](https://github.com/codesandbox/codesandboxer/commit/0b60604): | ||
- Centralise decision around what template to use into one location, and allow it to be exported for downstream packages. | ||
- [major] [b46e059](https://github.com/codesandbox/codesandboxer/commit/b46e059): | ||
- [major][b46e059](https://github.com/codesandbox/codesandboxer/commit/b46e059): | ||
- Move codesandboxer and codesandboxer-fs to first major version, as they exist in a fairly stable and used state. | ||
## 0.7.2 | ||
- [patch] [82a4f5f](https://github.com/codesandbox/codesandboxer/commit/82a4f5f): | ||
- [patch][82a4f5f](https://github.com/codesandbox/codesandboxer/commit/82a4f5f): | ||
- Fix typo that was stopping react and react-dom being ensured by the finalisation. | ||
## 0.7.1 | ||
- [patch] af01387: | ||
@@ -24,25 +35,29 @@ | ||
## 0.7.0 | ||
- [patch] 4b2b662: | ||
- Reorganise how templates are stored | ||
This is a bunch of changes that should mostly only be relevant internally. | ||
This is a bunch of changes that should mostly only be relevant internally. | ||
First is that there is a `/templates` directory instead of `constants.js` to | ||
store templates in. This makes it easy to read a template an easy to see how to add a new template | ||
First is that there is a `/templates` directory instead of `constants.js` to | ||
store templates in. This makes it easy to read a template an easy to see how to add a new template | ||
Secondly, while `codesandboxer-fs` still has its own templates, it inherits templates from `codesandboxer` | ||
meaning that a template can be added in one and flow down to the other. | ||
Secondly, while `codesandboxer-fs` still has its own templates, it inherits templates from `codesandboxer` | ||
meaning that a template can be added in one and flow down to the other. | ||
This sets up for Vue sandboxes. | ||
This sets up for Vue sandboxes. | ||
- [minor] 9db3c25: | ||
- template is now passed to 'finaliseCSB' as part of the first object not the second object. | ||
- [patch] 4b2b662: | ||
- Add Vue template to upload vue sandboxes | ||
In addition, codesandboxer will do its best to autodetect if it is | ||
processing a vue, react, or react-typescript sandbox, and use the | ||
preferred sandbox unless otherwise specified. | ||
In addition, codesandboxer will do its best to autodetect if it is | ||
processing a vue, react, or react-typescript sandbox, and use the | ||
preferred sandbox unless otherwise specified. | ||
## 0.6.1 | ||
- [patch] d0c0cef: | ||
@@ -61,2 +76,3 @@ | ||
## 0.5.0 | ||
- [minor] Allow the loading of css files; convert the json loader to a generic raw loader [becc64e](becc64e) | ||
@@ -95,4 +111,4 @@ | ||
* allow loading of JSX files | ||
* Add tests using fixtures in repo to test file resolution | ||
- allow loading of JSX files | ||
- Add tests using fixtures in repo to test file resolution | ||
@@ -99,0 +115,0 @@ ## 0.1.1 |
{ | ||
"name": "codesandboxer", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Fetch files from a git repository and upload them to codesandbox", | ||
@@ -22,2 +22,2 @@ "main": "dist/index.js", | ||
] | ||
} | ||
} |
68001