Skip to content
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.

Commit

Permalink
(#98) changed name to animate
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Wilkowski <Hi@Dominik-Wilkowski.com>
  • Loading branch information
dominikwilkowski committed Apr 18, 2017
1 parent 7978c35 commit 6ad3c99
Show file tree
Hide file tree
Showing 11 changed files with 198 additions and 324 deletions.
@@ -1,4 +1,4 @@
@gov.au/open-close CHANGELOG
@gov.au/animate CHANGELOG
======================

> Part of the [gov.au UI-Kit](https://github.com/govau/uikit/) ecosystem.
Expand Down
File renamed without changes.
10 changes: 5 additions & 5 deletions packages/open-close/README.md → packages/animate/README.md
@@ -1,4 +1,4 @@
@gov.au/open-close
@gov.au/animate
============

> A JavaScript function to open, close and toggle the display of page elements.
Expand All @@ -21,11 +21,11 @@


```shell
yarn add @gov.au/open-close
yarn add @gov.au/animate
```

```shell
npm install @gov.au/open-close --save-dev
npm install @gov.au/animate --save-dev
```


Expand All @@ -38,7 +38,7 @@ npm install @gov.au/open-close --save-dev
## Dependency graph

```shell
open-close
animate
└─ core
```

Expand All @@ -60,7 +60,7 @@ open-close

## Tests

The visual test: http://uikit.apps.staging.digital.gov.au/packages/open-close/tests/site/
The visual test: http://uikit.apps.staging.digital.gov.au/packages/animate/tests/site/


**[⬆ back to top](#contents)**
Expand Down
105 changes: 105 additions & 0 deletions packages/animate/package.json
@@ -0,0 +1,105 @@
{
"name": "@gov.au/animate",
"version": "0.1.0",
"description": "A JavaScript function to animate CSS properties of page elements.",
"keywords": [
"uikit",
"pancake",
"pancake-module",
"sass",
"scss",
"css",
"gov.au",
"Commonwealth of Australia",
"design guide",
"design system"
],
"scripts": {
"postinstall": "pancake",
"test": "node ../../scripts/a11y.js",
"prepublish": "node ../../scripts/helper.js precompile publish",
"build": "node ../../scripts/helper.js precompile compile",
"watch:sass": "npm run build && onchange 'src/sass/*.scss' 'tests/site/*.scss' 'src/js/*.js' 'tests/js/*.js' -- npm run build",
"serve": "browser-sync start --server --startPath 'tests/site' --files 'tests/site/*.html, tests/site/*.css, tests/site/*.js'",
"watch": "npm-run-all --parallel serve watch:*"
},
"pancake": {
"auto-save": true,
"plugins": true,
"ignore": [],
"pancake-module": {
"version": "1.0.0",
"plugins": [
"@gov.au/pancake-sass"
],
"sass": {
"path": "lib/sass/_module.scss",
"sass-versioning": true
}
},
"css": {
"minified": true,
"modules": false,
"browsers": [
"last 2 versions",
"ie 8",
"ie 9",
"ie 10"
],
"location": "pancake/css/",
"name": "pancake.min.css"
},
"sass": {
"modules": false,
"location": "pancake/sass/",
"name": "pancake.scss"
}
},
"dependencies": {
"@gov.au/core": "^0.1.0",
"@gov.au/pancake": "~1",
"@gov.au/pancake-sass": "^1.0.9"
},
"peerDependencies": {
"@gov.au/core": "^0.1.0"
},
"devDependencies": {
"browser-sync": "^2.18.6",
"npm-run-all": "^4.0.1",
"onchange": "^3.2.1"
},
"files": [
"lib/*"
],
"engines": {
"node": ">=0.12.0",
"npm": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/govau/uikit.git"
},
"homepage": "http://guides.service.gov.au/design-guide/",
"bugs": {
"url": "https://github.com/govau/uikit/issues",
"email": "guides@digital.gov.au"
},
"author": {
"name": "Commonwealth of Australia, DTA",
"email": "guides@digital.gov.au",
"url": "https://www.dta.gov.au/"
},
"contributors": [
{
"name": "Dominik Wilkowski",
"email": "hi@dominik-wilkowski.com",
"url": "https://dominik-wilkowski.com/"
},
{
"name": "Simon Schwartz",
"email": "simon.schwartz0@gmail.com",
"url": "https://www.simonschwartz.github.io"
}
],
"license": "MIT"
}

0 comments on commit 6ad3c99

Please sign in to comment.