Skip to content

Commit 5045d89

Browse files
committed
Update the version number, README, and LICENSE
1 parent f731b95 commit 5045d89

File tree

3 files changed

+27
-8
lines changed

3 files changed

+27
-8
lines changed

LICENSE

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

3-
Copyright (c) Vincent Klaiber <[email protected]>
3+
Copyright (c) 2020 Ray Brown <[email protected]>
4+
Copyright (c) 2019-2020 Vincent Klaiber <[email protected]>
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
67

README.md

+24-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,30 @@
11
# autocomplete-tailwind
22

3-
This package has been archived and abandoned by the owner. It is now read-only.
3+
__NOTE:__ This package is forked from [vinkla/autocomplete-tailwind](https://github.com/vinkla/autocomplete-tailwind), where it has been archived and abandoned by the previous owner.
44

5-
#### Alternative Packages
5+
The project is now in a state of maintenance; there is no active development. If you're here because you are using this project but the completions list is not up to date, feel free to make a pull request!
66

7-
- [`bradlc/sublime-tailwindcss`](https://github.com/bradlc/sublime-tailwindcss#readme)
8-
- [`bradlc/vscode-tailwindcss`](https://github.com/bradlc/vscode-tailwindcss#readme)
7+
## Creating a New Version of this Package
98

10-
## License
9+
The following process should be followed to create a new version of this package. (I'm writing these words just as much for myself as I am for anyone interested in sending a PR.)
1110

12-
[MIT](LICENSE) © [Vincent Klaiber](https://doubledip.se)
11+
```shell
12+
# If the project's not set up yet:
13+
npm i
14+
15+
# Grab the latest version of Tailwind CSS
16+
npm update tailwindcss
17+
18+
# Run a script to update the `src/completions.json` file
19+
npm run build
20+
21+
# Run tests to make sure the update hasn't broken anything
22+
npm run test
23+
24+
# Perform a manual visual inspection of the completions
25+
git diff src/completions.json
26+
```
27+
28+
If nothing has failed and the inspection goes well enough, you're ready to create a new version! All this means is that you crack open `package.json` and bump the version number. After that's done, send a pull request!
29+
30+
[MIT](LICENSE) © [Ray Brown](https://raybrown.co)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "autocomplete-tailwind",
3-
"version": "0.8.3",
3+
"version": "0.8.4",
44
"description": "An autocompletion provider for the utility-first CSS framework Tailwind",
55
"license": "MIT",
66
"repository": "https://github.com/vinkla/autocomplete-tailwind",

0 commit comments

Comments
 (0)